about summary refs log tree commit diff
path: root/users/fcuny/desktop/sway/gammastep.nix
blob: 6a1387f1bc5f29cf8f297c0a40936b6266af0a98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }:

{
  services.gammastep = {
    enable = true;
    latitude = config.location.latitude;
    longitude = config.location.longitude;
    temperature = {
      day = 5000;
      night = 3700;
    };
  };
}