aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2021-08-01 21:50:13 +0200
committerAdrian Kummerlaender2021-08-01 21:50:13 +0200
commit68014b76d9f9e51fdeec800fca8182a79958a7b3 (patch)
tree270475b2bb04a5397e66166e37d3bbda063d1121 /home.nix
parent165822a531a6aac33ea0a9749fa6e783c6f76885 (diff)
downloadnixos_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
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/home.nix b/home.nix
index 133871d..3f87e95 100644
--- a/home.nix
+++ b/home.nix
@@ -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