Use pkgs.bash instead of bin/bash in alacritty settings
This commit is contained in:
parent
68b9ec4a18
commit
9a63683331
1 changed files with 1 additions and 1 deletions
2
home.nix
2
home.nix
|
|
@ -41,7 +41,7 @@
|
||||||
colors.primary.background = "#000000";
|
colors.primary.background = "#000000";
|
||||||
font.size = 11;
|
font.size = 11;
|
||||||
terminal.shell = {
|
terminal.shell = {
|
||||||
program = "/bin/bash";
|
program = "${pkgs.bash}/bin/bash";
|
||||||
args = [ "-l" "-c" "tmux attach || tmux" ];
|
args = [ "-l" "-c" "tmux attach || tmux" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue