nix-config/hosts/t490/services/redshift.nix

32 lines
440 B
Nix
Raw Normal View History

2025-03-21 15:01:39 +00:00
{ config, lib, ... }:
with lib;
let
2025-05-03 16:50:27 +01:00
cfg = config.redshift;
2025-03-21 15:01:39 +00:00
in
{
2025-05-03 16:50:27 +01:00
options.redshift.enable = mkEnableOption "Enable redshift";
2025-03-21 15:01:39 +00:00
config = mkIf cfg.enable {
location = {
latitude = 51.48;
longitude = -3.17;
};
services.redshift = {
enable = true;
brightness = {
day = "1";
night = "1";
};
temperature = {
day = 5500;
night = 3700;
};
};
};
}