added shell config

This commit is contained in:
twoneis 2024-01-13 00:55:58 +01:00
parent 4594a4067c
commit d70137311c
2 changed files with 16 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./gdb ./gdb
./git ./git
./media ./media
./shell
./terminal ./terminal
./themes ./themes
./utils ./utils

View file

@ -0,0 +1,15 @@
{ ... }: {
home.shellAliases = {
ga = "git add -A";
gc = "git commit -am ";
gp = "git push";
gpl = "git pull --recurse-submodules";
nrb = "sudo nixos-rebuild switch --flake .";
nd = "nix develop";
};
programs.bash = {
enable = true;
};
}