20 lines
383 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|