added shell config
This commit is contained in:
parent
4594a4067c
commit
d70137311c
2 changed files with 16 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
./gdb
|
./gdb
|
||||||
./git
|
./git
|
||||||
./media
|
./media
|
||||||
|
./shell
|
||||||
./terminal
|
./terminal
|
||||||
./themes
|
./themes
|
||||||
./utils
|
./utils
|
||||||
|
|
15
modules/home/shell/default.nix
Normal file
15
modules/home/shell/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue