1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-06 05:13:28 +02:00
home-manager/tests/modules/programs/bottom/example-settings.nix
polykernel 4b964d2f7b
bottom: add module
Bottom is a cross-platform graphical process/system monitor with a
customizable interface and a multitude of features.

Two unit tests were added validate the module behavior for an empty
configuration and the example configuration.
2021-09-14 23:40:21 +02:00

42 lines
820 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.bottom = {
enable = true;
package = pkgs.writeShellScriptBin "dummy" "";
settings = {
flags = {
avg_cpu = true;
temperature_type = "c";
};
colors = { low_battery_color = "red"; };
};
};
nmt.script = let
configDir = if pkgs.stdenv.isDarwin then
"home-files/Library/Application Support"
else
"home-files/.config";
in ''
assertFileContent \
"${configDir}/bottom/bottom.toml" \
${
builtins.toFile "example-settings-expected.toml" ''
[colors]
low_battery_color = "red"
[flags]
avg_cpu = true
temperature_type = "c"
''
}
'';
};
}