2021-01-23 23:07:42 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
services.gammastep = {
|
|
|
|
enable = true;
|
|
|
|
provider = "manual";
|
2021-01-28 01:25:47 +01:00
|
|
|
dawnTime = "6:00-7:45";
|
|
|
|
duskTime = "18:35-20:15";
|
|
|
|
settings = {
|
|
|
|
general = {
|
|
|
|
adjustment-method = "randr";
|
|
|
|
gamma = 0.8;
|
|
|
|
};
|
|
|
|
randr = { screen = 0; };
|
|
|
|
};
|
2021-01-23 23:07:42 +01:00
|
|
|
};
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.gammastep = { };
|
2021-01-23 23:07:42 +01:00
|
|
|
|
|
|
|
nmt.script = ''
|
2021-01-28 01:25:47 +01:00
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/gammastep/config.ini \
|
|
|
|
${./gammastep-basic-configuration-file-expected.conf}
|
2021-01-23 23:07:42 +01:00
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/systemd/user/gammastep.service \
|
|
|
|
${./gammastep-basic-configuration-expected.service}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|