diff --git a/modules/home/default.nix b/modules/home/default.nix index 2d11da2..18dace1 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -10,6 +10,7 @@ ./gdb ./git ./media + ./shell ./terminal ./themes ./utils diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix new file mode 100644 index 0000000..f30ae85 --- /dev/null +++ b/modules/home/shell/default.nix @@ -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; + }; +}