bash: Fix bashrc nix config

This commit is contained in:
Culis Gaspard 2024-09-18 14:15:14 +02:00
parent 5988dcc257
commit 42cc20e9a4

View file

@ -2,10 +2,12 @@
pkgs,
...
} : {
programs.bash.enable = true;
programs.bash = {
enable = true;
bashrcExtra = ". ${./.bashrc}";
};
home.file = {
".bashrc".source = ./.bashrc;
".bash_aliases".source = ./.bash_aliases;
".bash_exec".source = ./.bash_exec;
};