From 0cc815efb58572c9294a271293de815f2c711ed8 Mon Sep 17 00:00:00 2001 From: Ethel Morgan Date: Mon, 18 May 2020 11:07:29 +0100 Subject: import initial NixOS module; also README.md for installation --- modules/keyboard.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 modules/keyboard.nix (limited to 'modules') diff --git a/modules/keyboard.nix b/modules/keyboard.nix new file mode 100644 index 0000000..69ab14a --- /dev/null +++ b/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"; + }; + + }; +} -- cgit v1.2.3