2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
2013-10-21 09:08:42 -07:00
|
|
|
let
|
|
|
|
cfg = config.services.redshift;
|
|
|
|
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
services.redshift.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
example = true;
|
|
|
|
description = "Enable Redshift to change your screen's colour temperature depending on the time of day";
|
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.latitude = mkOption {
|
|
|
|
description = "Your current latitude";
|
2015-06-15 08:42:55 -07:00
|
|
|
type = types.str;
|
2013-10-21 09:08:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.longitude = mkOption {
|
|
|
|
description = "Your current longitude";
|
2015-06-15 08:42:55 -07:00
|
|
|
type = types.str;
|
2013-10-21 09:08:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.temperature = {
|
|
|
|
day = mkOption {
|
|
|
|
description = "Colour temperature to use during day time";
|
|
|
|
default = 5500;
|
2015-06-15 09:11:32 -07:00
|
|
|
type = types.int;
|
2013-10-21 09:08:42 -07:00
|
|
|
};
|
|
|
|
night = mkOption {
|
|
|
|
description = "Colour temperature to use during night time";
|
|
|
|
default = 3700;
|
2015-06-15 09:11:32 -07:00
|
|
|
type = types.int;
|
2014-02-13 08:11:14 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.brightness = {
|
|
|
|
day = mkOption {
|
|
|
|
description = "Screen brightness to apply during the day (between 0.1 and 1.0)";
|
2014-02-16 05:22:24 -08:00
|
|
|
default = "1";
|
2015-06-15 08:42:55 -07:00
|
|
|
type = types.str;
|
2014-02-13 08:11:14 -08:00
|
|
|
};
|
|
|
|
night = mkOption {
|
|
|
|
description = "Screen brightness to apply during the night (between 0.1 and 1.0)";
|
2014-02-16 05:22:24 -08:00
|
|
|
default = "1";
|
2015-06-15 08:42:55 -07:00
|
|
|
type = types.str;
|
2013-10-21 09:08:42 -07:00
|
|
|
};
|
|
|
|
};
|
2015-07-26 14:32:43 -07:00
|
|
|
|
|
|
|
services.redshift.extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "-v" "-m randr" ];
|
|
|
|
description = "Additional command-line arguments to pass to the redshift(1) command";
|
|
|
|
};
|
2013-10-21 09:08:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.redshift = {
|
|
|
|
description = "Redshift colour temperature adjuster";
|
|
|
|
requires = [ "display-manager.service" ];
|
2013-12-29 12:04:22 -08:00
|
|
|
after = [ "display-manager.service" ];
|
2014-02-14 06:48:19 -08:00
|
|
|
wantedBy = [ "graphical.target" ];
|
2014-02-13 08:11:14 -08:00
|
|
|
serviceConfig.ExecStart = ''
|
2013-10-21 09:08:42 -07:00
|
|
|
${pkgs.redshift}/bin/redshift \
|
|
|
|
-l ${cfg.latitude}:${cfg.longitude} \
|
2014-02-13 08:11:14 -08:00
|
|
|
-t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \
|
2015-07-26 14:32:43 -07:00
|
|
|
-b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \
|
2015-07-27 08:46:25 -07:00
|
|
|
${lib.strings.concatStringsSep " " cfg.extraOptions}
|
2013-10-21 09:08:42 -07:00
|
|
|
'';
|
|
|
|
environment = { DISPLAY = ":0"; };
|
2013-12-29 08:46:03 -08:00
|
|
|
serviceConfig.Restart = "always";
|
2013-10-21 09:08:42 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|