diff options
Diffstat (limited to 'nixos/modules/keyboard.nix')
-rw-r--r-- | nixos/modules/keyboard.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/nixos/modules/keyboard.nix b/nixos/modules/keyboard.nix deleted file mode 100644 index 69ab14a..0000000 --- a/nixos/modules/keyboard.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ config, lib, pkgs, ... }: -with lib; - -let - cfg = config.eth.keyboard; - -in { - - options.eth.keyboard = { - enable = mkEnableOption "Eth's keyboard preferences"; - }; - - config = mkIf cfg.enable { - - console.useXkbConfig = true; - - services.xserver = { - layout = "us"; - xkbVariant = "colemak"; - xkbOptions = "caps:escape"; - }; - - }; -} |