home-manager/tests/modules/services/redshift-gammastep/gammastep-basic-configuration.nix

27 lines
532 B
Nix
Raw Permalink Normal View History

2021-01-23 23:07:42 +01:00
{ config, pkgs, ... }:
{
config = {
services.gammastep = {
enable = true;
provider = "manual";
latitude = "0.0";
longitude = "0.0";
};
nixpkgs.overlays = [
(self: super: {
gammastep = pkgs.writeScriptBin "dummy-gammastep" "" // {
outPath = "@gammastep@";
};
})
];
nmt.script = ''
assertFileContent \
home-files/.config/systemd/user/gammastep.service \
${./gammastep-basic-configuration-expected.service}
'';
};
}