nixos: redshift service: add extraOptions

This commit is contained in:
Tobias Geerinckx-Rice 2015-07-26 23:32:43 +02:00
parent 10f419dae4
commit 77d33f77d7

View file

@ -47,6 +47,13 @@ in {
type = types.str;
};
};
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";
};
};
config = mkIf cfg.enable {
@ -59,7 +66,8 @@ in {
${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}
-b ${toString cfg.brightness.day}:${toString cfg.brightness.night} \
${cfg.extraOptions}
'';
environment = { DISPLAY = ":0"; };
serviceConfig.Restart = "always";