refactor(bash): move bash home-manager config to modules/home-sh.nix

This commit is contained in:
Mohammad Rafiq 2025-02-28 05:09:13 +08:00
parent 09d9eb1d22
commit db0a421bc5
2 changed files with 10 additions and 6 deletions

9
modules/home-sh.nix Normal file
View file

@ -0,0 +1,9 @@
{
programs.bash = {
enable = true;
shellAliases = {
rebuild = "sudo nixos-rebuild switch --flake";
gs = "git status";
};
};
}