diff --git a/shell/bash/default.nix b/shell/bash/default.nix index 8aff3f6..07cb835 100644 --- a/shell/bash/default.nix +++ b/shell/bash/default.nix @@ -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; };