Add colemak module
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 14:57:39 +0200
2 files changed, 18 insertions(+), 0 deletions(-)
A modules/colemak.nix
@@ -0,0 +1,17 @@+{ config, pkgs, ... }: + +{ i18n.consoleKeyMap = "colemak/en-latin9"; + kmscon = { + extraConfig = '' + xkb-model=pc104 + xkb-layout=us + xkb-variant=colemak + xkb-options="altwin:prtsc_rwin" + ''; + }; + xserver = { + layout = "us,us"; + xkbVariant = "colemak,"; + xkbOptions = "grp:shifts_toggle,altwin:prtsc_rwin"; + }; +}
M satoshipad.nix → satoshipad.nix
@@ -14,6 +14,7 @@ ./modules/nitrokey.nix ./modules/shell.nix ./modules/dotfiles.nix ./modules/berlin.nix + ./modules/colemak.nix ]; networking.hostName = "satoshipad";