restructure and rename directories

This commit is contained in:
Pim Kunis 2023-10-22 22:30:51 +02:00
parent 81313d1d5d
commit 36b2ded537
23 changed files with 29 additions and 20 deletions

View file

@ -0,0 +1,20 @@
{
config = {
programs.bash = {
enable = true;
shellAliases = {
dig = "dog";
htop = "btop";
gp = "git push";
gco = "git checkout";
gd = "git diff";
gc = "git commit";
gpl = "git pull";
gb = "git branch";
ga = "git add";
gl = "git log";
gs = "git status";
};
};
};
}