2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
2013-10-21 18:08:42 +02: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";
|
2014-02-13 17:11:14 +01:00
|
|
|
type = types.uniq types.string;
|
2013-10-21 18:08:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.longitude = mkOption {
|
|
|
|
description = "Your current longitude";
|
2014-02-13 17:11:14 +01:00
|
|
|
type = types.uniq types.string;
|
2013-10-21 18:08:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.temperature = {
|
|
|
|
day = mkOption {
|
|
|
|
description = "Colour temperature to use during day time";
|
|
|
|
default = 5500;
|
2014-02-13 17:11:14 +01:00
|
|
|
type = types.uniq types.int;
|
2013-10-21 18:08:42 +02:00
|
|
|
};
|
|
|
|
night = mkOption {
|
|
|
|
description = "Colour temperature to use during night time";
|
|
|
|
default = 3700;
|
2014-02-13 17:11:14 +01:00
|
|
|
type = types.uniq types.int;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.redshift.brightness = {
|
|
|
|
day = mkOption {
|
|
|
|
description = "Screen brightness to apply during the day (between 0.1 and 1.0)";
|
2014-02-16 14:22:24 +01:00
|
|
|
default = "1";
|
2014-02-13 17:11:14 +01:00
|
|
|
type = types.uniq types.string;
|
|
|
|
};
|
|
|
|
night = mkOption {
|
|
|
|
description = "Screen brightness to apply during the night (between 0.1 and 1.0)";
|
2014-02-16 14:22:24 +01:00
|
|
|
default = "1";
|
2014-02-13 17:11:14 +01:00
|
|
|
type = types.uniq types.string;
|
2013-10-21 18:08:42 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.redshift = {
|
|
|
|
description = "Redshift colour temperature adjuster";
|
|
|
|
requires = [ "display-manager.service" ];
|
2013-12-29 21:04:22 +01:00
|
|
|
after = [ "display-manager.service" ];
|
2014-02-14 15:48:19 +01:00
|
|
|
wantedBy = [ "graphical.target" ];
|
2014-02-13 17:11:14 +01:00
|
|
|
serviceConfig.ExecStart = ''
|
2013-10-21 18:08:42 +02:00
|
|
|
${pkgs.redshift}/bin/redshift \
|
|
|
|
-l ${cfg.latitude}:${cfg.longitude} \
|
2014-02-13 17:11:14 +01:00
|
|
|
-t ${toString cfg.temperature.day}:${toString cfg.temperature.night} \
|
|
|
|
-b ${toString cfg.brightness.day}:${toString cfg.brightness.night}
|
2013-10-21 18:08:42 +02:00
|
|
|
'';
|
|
|
|
environment = { DISPLAY = ":0"; };
|
2013-12-29 17:46:03 +01:00
|
|
|
serviceConfig.Restart = "always";
|
2013-10-21 18:08:42 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|