10 lines
140 B
Nix
10 lines
140 B
Nix
{
|
|
programs.zsh.shellAliases = {
|
|
v = "nvim";
|
|
c = "clear";
|
|
cp = "cp -riv";
|
|
|
|
"nix-shell" = "nix-shell --command zsh";
|
|
};
|
|
}
|