nixos-laptop/home/bash/default.nix
2023-10-15 17:59:47 +02:00

20 lines
383 B
Nix

{
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";
};
};
};
}