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

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

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

    # Remap menu to compose.
    /run/current-system/sw/bin/setkeycodes 5d 127
  '';

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