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

27 lines
526 B
Nix
Raw Normal View History

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