Files
nix-config/home/base/desktop/shell.nix

18 lines
290 B
Nix

{ ... }: {
programs.bash = {
# load the alias file for work
bashrcExtra = ''
source /etc/agenix/alias-for-work.bash
'';
};
programs.nushell = {
# load the alias file for work
extraConfig = ''
source /etc/agenix/alias-for-work.nushell
'';
};
}