mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
d8dd2a09b0
Not every option is exposed by redshift/gammastep parameters, for example gamma options are only exposed in configuration file. So this PR refactors this module to generate a configuration file and pass it to the redshift/gammastep using -c parameter. This is a breaking change since there is no support for some of the older options like `extraOptions`, but unless you use `extraOptions` it should work without changes.
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}
|
|
'';
|
|
};
|
|
}
|