diff --git a/modules/bash.nix b/modules/bash.nix new file mode 100644 index 0000000..84ed197 --- /dev/null +++ b/modules/bash.nix @@ -0,0 +1,11 @@ +{ + programs.bash = { + enable = true; + enableVteIntegration = true; + shellAliases = { + "ll" = "ls -l"; + "la" = "ls -la"; + ".." = "cd .."; + }; + }; +} diff --git a/modules/bottom.nix b/modules/bottom.nix index 2d111e8..5688b27 100644 --- a/modules/bottom.nix +++ b/modules/bottom.nix @@ -7,6 +7,7 @@ in { xdg.configFile."bottom/bottom.toml".source = tomlGenerate { "flags" = { "left_legend" = true; + "color" = "nord"; }; }; }