From 9a63683331ad48408da17a2b7144c166fda202f8 Mon Sep 17 00:00:00 2001 From: Leo Alho Date: Tue, 28 Jul 2026 14:12:55 +0300 Subject: [PATCH] Use pkgs.bash instead of bin/bash in alacritty settings --- home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 625dd2f..e634dc8 100644 --- a/home.nix +++ b/home.nix @@ -41,7 +41,7 @@ colors.primary.background = "#000000"; font.size = 11; terminal.shell = { - program = "/bin/bash"; + program = "${pkgs.bash}/bin/bash"; args = [ "-l" "-c" "tmux attach || tmux" ]; }; };