Commit ae00699

HPCesia <me@hpcesia.com>
2026-03-02 09:21:42
fix: niri keybind cheatsheet binds
1 parent 38e5763
Changed files (1)
modules
desktop
desktop-environment
discrete
modules/desktop/desktop-environment/discrete/wm/niri/keybinding.nix
@@ -3,7 +3,9 @@
     programs.niri.settings.binds = with config.lib.niri.actions; {
       # Mod-Shift-/, which is usually the same as Mod-?,
       # shows a list of important hotkeys.
-      "Mod+Shift+Slash".action = lib.mkIf (config.services.noctalia-shell.enable or false) show-hotkey-overlay;
+      "Mod+Shift+Slash" =
+        lib.mkIf (!config.services.noctalia-shell.enable or true)
+        {action = show-hotkey-overlay;};
       "Mod+Escape".action = toggle-overview;
 
       "Mod+Shift+E".action = quit;