about summary refs log tree commit diff stats
path: root/home-manager/gammastep/default.nix
blob: 79b027cdf5f8fef503ed563a5e9d335aea3e5e6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{config, lib, ...}: {
  services.gammastep = {
    enable = true;
    settings = {
      general = {
        temp-day = lib.mkForce 1300;
        temp-night = lib.mkForce 1300;
        gamma = "0.8:0.8:0.8";
        fade = 0;
        adjustment-method = "wayland";
        location-provider = "manual";
      };

      manual = {
        lat = 48.1;
        lon = 11.6;
      };
    };
  };
}