From 68014b76d9f9e51fdeec800fca8182a79958a7b3 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 1 Aug 2021 21:50:13 +0200 Subject: Remap capslock to escape also in home-manager Somehow suddenly necessary, previously it worked due to the global config --- home.nix | 9 ++++++--- 1 file 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 -- cgit v1.2.3