1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 18:57:22 +00:00
home-manager/tests/modules/programs/i3status/with-custom.nix
Robert Helgesson 7a3f0b3b8d
tests: rework derivation stubbing
Instead of having to manually stub packages that should not be
downloaded we instead automatically stub all packages (except a small
list of whitelisted ones). Tests can re-introduce the real package by
using the `realPkgs` module argument.
2025-02-04 23:58:20 +01:00

61 lines
1.2 KiB
Nix

{ config, ... }:
{
programs.i3status = {
enable = true;
enableDefault = false;
general = {
colors = true;
color_good = "#e0e0e0";
color_degraded = "#d7ae00";
color_bad = "#f69d6a";
interval = 1;
};
package = config.lib.test.mkStubPackage { };
modules = {
"volume master" = {
position = 1;
settings = {
format = " %volume";
format_muted = " muted (%volume)";
device = "pulse:1";
};
};
"disk /" = {
position = 2;
settings = { format = "/ %avail"; };
};
};
};
nmt.script = ''
assertFileContent \
home-files/.config/i3status/config \
${
builtins.toFile "i3status-expected-config" ''
general {
color_bad = "#f69d6a"
color_degraded = "#d7ae00"
color_good = "#e0e0e0"
colors = true
interval = 1
}
order += "volume master"
order += "disk /"
disk / {
format = "/ %avail"
}
volume master {
device = "pulse:1"
format = " %volume"
format_muted = " muted (%volume)"
}
''
}
'';
}