1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-04 20:33:27 +02:00
home-manager/tests/modules/services/redshift-gammastep/redshift-basic-configuration.nix

31 lines
681 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";
settings = {
redshift = {
adjustment-method = "randr";
gamma = 0.8;
};
randr = { screen = 0; };
};
2021-01-23 23:07:42 +01:00
};
test.stubs.redshift = { };
2021-01-23 23:07:42 +01:00
nmt.script = ''
assertFileContent \
home-files/.config/redshift/redshift.conf \
${./redshift-basic-configuration-file-expected.conf}
2021-01-23 23:07:42 +01:00
assertFileContent \
home-files/.config/systemd/user/redshift.service \
${./redshift-basic-configuration-expected.service}
'';
};
}