Use pkgs.bash instead of bin/bash in alacritty settings

This commit is contained in:
Leo Alho 2026-07-28 14:12:55 +03:00
parent 68b9ec4a18
commit 9a63683331

View file

@ -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" ];
};
};