This commit is contained in:
Hadi 2024-06-14 21:18:42 +02:00
parent 7267fa55fb
commit 49cf0fc0e3
2 changed files with 17 additions and 0 deletions

View File

@ -207,3 +207,7 @@ git clone https://github.com/anotherhadi/nixy ~/.config/nixos
```sh
sudo nixos-rebuild switch --flake ~/.config/nixos#nixy
```
## Contribute
Feel free to contribute to this project by opening an issue or a pull request.

View File

@ -46,6 +46,19 @@
icat = "${pkgs.kitty}/bin/kitty +kitten icat";
note = "vim ~/Nextcloud/obsidian";
obs = "vim ~/Nextcloud/obsidian";
# git
ga = "git add";
gc = "git commit";
gcm = "git commit -m";
gcu = "git commit -m 'Update'";
gp = "git push";
gpl = "git pull";
gs = "git status";
gd = "git diff";
gco = "git checkout";
gcb = "git checkout -b";
gbr = "git branch";
};
};
}