aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/home/gammastep.nix
blob: ae9d111db47ba9918c96626c9ff771f35870e192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, config, ... }:
{
  services.gammastep = {
    enable = true;
    provider = "manual";
    latitude = 49.282730;
    longitude = -123.120735;
    
    temperature = {
      day = 5000;
      night = 3000;
    };

    settings = {
      general = {
        adjustment-method = "wayland";
      };
    };
  };
}