Bash and bottom
This commit is contained in:
parent
8af06b2703
commit
9c0cc4dd45
2 changed files with 12 additions and 0 deletions
11
modules/bash.nix
Normal file
11
modules/bash.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
programs.bash = {
|
||||||
|
enable = true;
|
||||||
|
enableVteIntegration = true;
|
||||||
|
shellAliases = {
|
||||||
|
"ll" = "ls -l";
|
||||||
|
"la" = "ls -la";
|
||||||
|
".." = "cd ..";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue