mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
nixos: redshift service: add extraOptions
This commit is contained in:
parent
10f419dae4
commit
77d33f77d7
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user