nixpkgs/nixos/modules/services/x11/redshift.nix

69 lines
2.0 KiB
Nix
Raw Normal View History

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