bash: Fix bashrc nix config
This commit is contained in:
parent
5988dcc257
commit
42cc20e9a4
1 changed files with 4 additions and 2 deletions
|
@ -2,10 +2,12 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
} : {
|
} : {
|
||||||
programs.bash.enable = true;
|
programs.bash = {
|
||||||
|
enable = true;
|
||||||
|
bashrcExtra = ". ${./.bashrc}";
|
||||||
|
};
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".bashrc".source = ./.bashrc;
|
|
||||||
".bash_aliases".source = ./.bash_aliases;
|
".bash_aliases".source = ./.bash_aliases;
|
||||||
".bash_exec".source = ./.bash_exec;
|
".bash_exec".source = ./.bash_exec;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue