diff options
Diffstat (limited to 'modules/home')
| -rw-r--r-- | modules/home/i3wm/nord-blue/i3.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index c6704a2..91ad842 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -50,9 +50,9 @@ in keybindings = lib.mkOptionDefault { "${mod}+Return" = "exec ${pkgs.alacritty}/bin/alacritty"; # Lanuch alacritty as a terminal - "${mod}+d" = "exec ${app-launcher}"; # Launch dmenu (app launcher) + "${mod}+d" = "exec app-launcher"; # Launch dmenu (app launcher) "${mod}+q" = "kill"; # Close an app (kill the process) - "${mod}+Ctrl+l" = "exec ${lock-screen}"; # Lock screen + "${mod}+Ctrl+l" = "exec lock-screen"; # Lock screen "${mod}+Shift+r" = "restart"; # Reload i3 "${mod}+Ctrl+Shift+e" = "exec sh -c 'i3-msg exit'"; # Exit i3 (CAREFUL NO CONFIRM) "${mod}+Shift+s" = "exec flameshot gui"; @@ -112,7 +112,9 @@ in }; home.packages = with pkgs; [ dmenu # App launcher + app-launcher i3lock # Lock screen + lock-screen imagemagick # Handle wallpaper resizing for i3-lock polybar # Status bar alacritty # Terminal Emulator |
