Bash and bottom

This commit is contained in:
Filippo Berto 2021-05-22 15:00:23 +02:00
parent 8af06b2703
commit 9c0cc4dd45
2 changed files with 12 additions and 0 deletions

11
modules/bash.nix Normal file
View file

@ -0,0 +1,11 @@
{
programs.bash = {
enable = true;
enableVteIntegration = true;
shellAliases = {
"ll" = "ls -l";
"la" = "ls -la";
".." = "cd ..";
};
};
}