refactor: move shellaliases to user scope

This commit is contained in:
Mohammad Rafiq 2025-03-14 13:35:47 +08:00
parent 0539b63e83
commit 0074d96e89
2 changed files with 6 additions and 4 deletions

View file

@ -1,9 +1,5 @@
{
programs.bash = {
enable = true;
shellAliases = {
gs = "git status";
ai = "aichat -r %shell% -e";
};
};
}

View file

@ -13,4 +13,10 @@
./programs/zsh.nix
./scripts
];
home.shell.enableShellIntegration = true;
home.shellAliases = {
gs = "git status";
ai = "aichat -r %shell% -e";
};
}