nix-config/modules/home-manager/desktop/redshift.nix

20 lines
346 B
Nix
Raw Normal View History

2025-06-09 22:34:06 +01:00
{ config, lib, ... }:
let
cfg = config.desktop.redshift;
inherit (lib) mkEnableOption mkIf;
in
{
options.desktop.redshift = {
enable = mkEnableOption "Enable redshift";
};
config = mkIf cfg.enable {
services.redshift.enable = true;
services.redshift.latitude = "51.58";
services.redshift.longitude = "-2.99";
};
}