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

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