summaryrefslogtreecommitdiffstats
path: root/usecases/desktop/graphical/wlsunset.nix
blob: 869f3774df4c85be346e2bd9730fed4ce9dac48f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, ... }:
let
  cfg = config.reborn.wlsunset;
in
{
  options.reborn.wlsunset = {
    enable = lib.mkEnableOption "Reborn wlsunset config";
  };

  config = lib.mkIf cfg.enable {
    home-manager.users.minijackson.services.wlsunset = {
      enable = true;
      latitude = "48.864716";
      longitude = "2.349014";
      # Reduce blue light anyways
      temperature = {
        day = 4000;
        night = 2500;
      };
    };

  };
}