1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ 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"; }; }