9 lines
115 B
Nix
9 lines
115 B
Nix
|
{enable}: {
|
||
|
inherit enable;
|
||
|
shellAliases = {
|
||
|
ll = "ls -lh";
|
||
|
la = "ls -lah";
|
||
|
".." = "cd ..";
|
||
|
};
|
||
|
}
|