mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-22 17:39:56 +01:00
18 lines
290 B
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
|
|
'';
|
|
};
|
|
|
|
}
|