diff options
author | Soispha <soispha@vhack.eu> | 2023-08-30 20:53:21 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-30 21:40:30 +0200 |
commit | fe00eefdc013d243dc4abbba618738c6dcf1de60 (patch) | |
tree | 56c2fd4626f57d83508f16ef3b235e600a0dcec7 /sys/locale/default.nix | |
parent | Fix(hm/conf/lf/keymaps): Run the rename command in the console (diff) | |
download | nixos-config-fe00eefdc013d243dc4abbba618738c6dcf1de60.zip |
Feat(sys/locale): Add a keymap with special char support
Diffstat (limited to 'sys/locale/default.nix')
-rw-r--r-- | sys/locale/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/locale/default.nix b/sys/locale/default.nix index 1e7786cc..d4a44b6b 100644 --- a/sys/locale/default.nix +++ b/sys/locale/default.nix @@ -32,5 +32,13 @@ in { console = { inherit (cfg) keyMap; }; + + services.xserver.extraLayouts = { + "us-modified" = { + description = "standard us with german and swedish extra chars."; + languages = ["eng" "swe" "deu"]; + symbolsFile = ./keymaps/us_modified.xkb; + }; + }; }; } |