about summary refs log tree commit diff
path: root/modules/workstation/hardware/pixelbook/default.nix
blob: 6a247fcb94607414b4dbe7e2b132c8a1239f1cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ ... }:

{
  imports = [ ../../../nixos-hardware/google/pixelbook ];

  boot.postBootCommands = ''
    # Remap Google Assistant to left super.
    /run/current-system/sw/bin/setkeycodes e058 125
  '';

  services.logind.extraConfig = ''
    HandlePowerKey=suspend
  '';
}