diff options
author | Alan Pearce | 2019-08-04 15:13:00 +0200 |
---|---|---|
committer | Alan Pearce | 2019-08-04 15:13:00 +0200 |
commit | ad2906907b4e72e55b5f43667773b5c5ad1e2475 (patch) | |
tree | d9c0efa0b4b44b88ee72e2a936e2f086353b8c30 /modules | |
parent | 1a25bbc3e539dfc4005b9981554da90475912dfa (diff) | |
download | nixos-configuration-ad2906907b4e72e55b5f43667773b5c5ad1e2475.tar.lz nixos-configuration-ad2906907b4e72e55b5f43667773b5c5ad1e2475.tar.zst nixos-configuration-ad2906907b4e72e55b5f43667773b5c5ad1e2475.zip |
Remove colemak.nix
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hardware/colemak.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/hardware/colemak.nix b/modules/hardware/colemak.nix deleted file mode 100644 index b8218e6..0000000 --- a/modules/hardware/colemak.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ config, pkgs, ... }: - -{ i18n.consoleKeyMap = "colemak/en-latin9"; - services.kmscon = { - extraConfig = '' - xkb-model=pc104 - xkb-layout=us - xkb-variant=colemak - xkb-options="altwin:prtsc_rwin" - ''; - }; - services.xserver = { - layout = "us,us"; - xkbVariant = "colemak,"; - xkbOptions = "grp:shifts_toggle,altwin:prtsc_rwin"; - displayManager.sessionCommands = '' - # Needed for pass/rofi-pass autotype - ${pkgs.xlibs.setxkbmap}/bin/setxkbmap us,us -variant colemak, - ''; - }; -} |