11 lines
173 B
Nix
11 lines
173 B
Nix
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableVteIntegration = true;
|
|
shellAliases = {
|
|
"ll" = "ls -l";
|
|
"la" = "ls -la";
|
|
".." = "cd ..";
|
|
};
|
|
};
|
|
}
|