home-manager/shell_aliases.nix

12 lines
143 B
Nix
Raw Normal View History

2024-07-10 06:10:56 +00:00
{ ... }:
{
home.shellAliases = {
g = "git";
gg = "git graph";
gs = "git status";
gd = "git diff";
k = "kubectl";
};
}