From 89265aef48a391d7b86de1ab4216d6015ba59045 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Wed, 8 Jan 2025 20:00:37 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Run=20garbage=20cleaner=20weekly?= =?UTF-8?q?.=20Fixed=20wrong=20keybind=20for=20esc=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home-manager/hyprland/binds.nix | 2 +- modules/nix-helper.nix | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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"; + }; }; }