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/pqiv/settings.nix
2023-08-16 17:44:54 +02:00

26 lines
496 B
Nix

{ config, ... }:
{
programs.pqiv = {
enable = true;
package = config.lib.test.mkStubPackage { name = "pqiv"; };
settings = {
options = {
hide-info-box = 1;
thumbnail-size = "256x256";
};
};
};
nmt.script = ''
assertFileExists home-files/.config/pqivrc
assertFileContent home-files/.config/pqivrc ${
builtins.toFile "pqiv.expected" ''
[options]
hide-info-box=1
thumbnail-size=256x256
''
}
'';
}