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 ..";
};
};
}

View file

@ -7,6 +7,7 @@ in {
xdg.configFile."bottom/bottom.toml".source = tomlGenerate { xdg.configFile."bottom/bottom.toml".source = tomlGenerate {
"flags" = { "flags" = {
"left_legend" = true; "left_legend" = true;
"color" = "nord";
}; };
}; };
} }