restructure with nixos modules

This commit is contained in:
Pim Kunis 2023-10-08 11:44:31 +02:00
parent 159f5dfe75
commit 1f1c30f57c
19 changed files with 235 additions and 182 deletions

19
bash/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
config = {
programs.bash = {
enable = true;
shellAliases = {
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";
};
};
};
}