diff --git a/home-manager/hyprland/binds.nix b/home-manager/hyprland/binds.nix index 47565a2..d36e769 100644 --- a/home-manager/hyprland/binds.nix +++ b/home-manager/hyprland/binds.nix @@ -21,7 +21,7 @@ in "$mainMod, B, exec, ${app.browser}" "$mainMod, L, exec, ${app.lockScreen}" "$mainMod, K, exec, [float] ${app.calculator}" - "$mainMod, ESC, exec, wlogout" + "$mainMod, ESCAPE, exec, wlogout" # Move focus with mainMod + arrow keys "$mainMod, left, movefocus, l" diff --git a/modules/nix-helper.nix b/modules/nix-helper.nix index d1233e4..f60cc0e 100644 --- a/modules/nix-helper.nix +++ b/modules/nix-helper.nix @@ -3,5 +3,10 @@ programs.nh = { enable = true; flake = ../.; + clean = { + enable = true; + dates = "weekly"; + extraArgs = "--keep-since 30d"; + }; }; }