12 lines
143 B
Nix
12 lines
143 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
home.shellAliases = {
|
||
|
g = "git";
|
||
|
gg = "git graph";
|
||
|
gs = "git status";
|
||
|
gd = "git diff";
|
||
|
k = "kubectl";
|
||
|
};
|
||
|
}
|