summaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-06 13:25:09 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-06 13:25:09 +0100
commit8e7f3f16da6cf4ed87685d93f408316c5b2b189a (patch)
tree9e7f033437480e50467e25599c16c9ef5e2ba2ce /modules/home
parentbdf0d226939d8c4e81d2a54fab6cb123a54d281c (diff)
fixed running scripts in i3
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/i3wm/nord-blue/i3.nix6
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