services.redshift: New service
This commit is contained in:
parent
3af6415ab8
commit
d792544802
@ -238,6 +238,7 @@
|
|||||||
./services/x11/window-managers/twm.nix
|
./services/x11/window-managers/twm.nix
|
||||||
./services/x11/window-managers/wmii.nix
|
./services/x11/window-managers/wmii.nix
|
||||||
./services/x11/window-managers/xmonad.nix
|
./services/x11/window-managers/xmonad.nix
|
||||||
|
./services/x11/redshift.nix
|
||||||
./services/x11/xfs.nix
|
./services/x11/xfs.nix
|
||||||
./services/x11/xserver.nix
|
./services/x11/xserver.nix
|
||||||
./system/activation/activation-script.nix
|
./system/activation/activation-script.nix
|
||||||
|
51
nixos/modules/services/x11/redshift.nix
Normal file
51
nixos/modules/services/x11/redshift.nix
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{ 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.string;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.redshift.longitude = mkOption {
|
||||||
|
description = "Your current longitude";
|
||||||
|
type = types.string;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.redshift.temperature = {
|
||||||
|
day = mkOption {
|
||||||
|
description = "Colour temperature to use during day time";
|
||||||
|
default = 5500;
|
||||||
|
type = types.int;
|
||||||
|
};
|
||||||
|
night = mkOption {
|
||||||
|
description = "Colour temperature to use during night time";
|
||||||
|
default = 3700;
|
||||||
|
type = types.int;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
systemd.services.redshift = {
|
||||||
|
description = "Redshift colour temperature adjuster";
|
||||||
|
requires = [ "display-manager.service" ];
|
||||||
|
script = ''
|
||||||
|
${pkgs.redshift}/bin/redshift \
|
||||||
|
-l ${cfg.latitude}:${cfg.longitude} \
|
||||||
|
-t ${toString cfg.temperature.day}:${toString cfg.temperature.night}
|
||||||
|
'';
|
||||||
|
environment = { DISPLAY = ":0"; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user