diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-29 21:45:44 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-05-29 21:45:44 +0100 |
commit | 433a9ffcbddda74b0449eba251246a60221ae7cd (patch) | |
tree | 94792eabcb1e30b1f452ea18fd9c70e267aa4180 /nixos/modules/keyboard.nix | |
parent | 1d6f6c4c6f4823d1b969c6309ad2d472441b7b16 (diff) |
better mirror upstream nixpkgs layout
Diffstat (limited to 'nixos/modules/keyboard.nix')
-rw-r--r-- | nixos/modules/keyboard.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/nixos/modules/keyboard.nix b/nixos/modules/keyboard.nix new file mode 100644 index 0000000..69ab14a --- /dev/null +++ b/nixos/modules/keyboard.nix @@ -0,0 +1,24 @@ +{ 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"; + }; + + }; +} |