fix: secrets for work

This commit is contained in:
Ryan Yin
2023-07-14 20:16:31 +08:00
parent 8684376b98
commit 5ed0ece058
6 changed files with 70 additions and 40 deletions

View File

@@ -0,0 +1,17 @@
{ ... }: {
programs.bash = {
# load the alias file for work
bashrcExtra = ''
source /run/agenix/alias-for-work.bash
'';
};
programs.nushell = {
# load the alias file for work
extraConfig = ''
source /run/agenix/alias-for-work.nushell
'';
};
}