diff options
author | Adrian Kummerlaender | 2021-08-01 21:50:13 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2021-08-01 21:50:13 +0200 |
commit | 68014b76d9f9e51fdeec800fca8182a79958a7b3 (patch) | |
tree | 270475b2bb04a5397e66166e37d3bbda063d1121 | |
parent | 165822a531a6aac33ea0a9749fa6e783c6f76885 (diff) | |
download | nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.tar nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.tar.gz nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.tar.bz2 nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.tar.lz nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.tar.xz nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.tar.zst nixos_home-68014b76d9f9e51fdeec800fca8182a79958a7b3.zip |
Remap capslock to escape also in home-manager
Somehow suddenly necessary, previously it worked due to the global config
-rw-r--r-- | home.nix | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -10,19 +10,22 @@ in { _module.args.sources = sources; _module.args.pkgs-unstable = pkgs-unstable; _module.args.pkgs-personal = pkgs-personal; - + imports = [ # define options custom to this config ./custom.nix # load host specific stuff ./host/current.nix # task shortcuts - ./module/tasker.nix + ./module/tasker.nix ./tasks/default.nix ]; home = { - keyboard.layout = "de"; + keyboard = { + layout = "de"; + options = [ "caps:escape" ]; + }; packages = [ pkgs-personal.persistent-nix-shell |