diff options
-rw-r--r-- | modules/hardware/qwerty.nix | 14 | ||||
-rw-r--r-- | satoshipad.nix | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/hardware/qwerty.nix b/modules/hardware/qwerty.nix new file mode 100644 index 0000000..3783b3a --- /dev/null +++ b/modules/hardware/qwerty.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ services.kmscon = { + extraConfig = '' + xkb-model=pc104 + xkb-layout=us + xkb-options="altwin:prtsc_rwin" + ''; + }; + services.xserver = { + layout = "us"; + xkbOptions = "altwin:prtsc_rwin"; + }; +} diff --git a/satoshipad.nix b/satoshipad.nix index 9fb5454..226908f 100644 --- a/satoshipad.nix +++ b/satoshipad.nix @@ -20,6 +20,7 @@ ./modules/hardware/network-manager.nix ./modules/hardware/nitrokey.nix ./modules/hardware/printing.nix + ./modules/hardware/qwerty.nix ./modules/hardware/trackball.nix ./modules/machines/t470s.nix ./modules/programs/accounting.nix |