a0869759be
GitOrigin-RevId: ac319fd3149b23a3ad8ee24cb2def6e67acf194c
36 lines
822 B
Nix
36 lines
822 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.redshift = {
|
|
enable = true;
|
|
provider = "manual";
|
|
latitude = 0.0;
|
|
longitude = "0.0";
|
|
settings = {
|
|
redshift = {
|
|
adjustment-method = "randr";
|
|
gamma = 0.8;
|
|
};
|
|
randr = { screen = 0; };
|
|
};
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
redshift = pkgs.writeScriptBin "dummy-redshift" "" // {
|
|
outPath = "@redshift@";
|
|
};
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/redshift/redshift.conf \
|
|
${./redshift-basic-configuration-file-expected.conf}
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/redshift.service \
|
|
${./redshift-basic-configuration-expected.service}
|
|
'';
|
|
};
|
|
}
|