nixos-laptop/home/bash/default.nix

21 lines
383 B
Nix
Raw Normal View History

2023-10-08 14:57:57 +00:00
{
config = {
programs.bash = {
enable = true;
shellAliases = {
2023-10-15 15:59:47 +00:00
dig = "dog";
2023-10-08 14:57:57 +00:00
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";
};
};
};
}