blob: 510cb1069430a2fed2c5d38f8a496587b2dce839 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, lib, pkgs, ... }:
{
services.gammastep = {
enable = true;
#TODO: this needs to come from locale.nix
latitude = 37.8715;
longitude = -122.2730;
temperature = {
day = 5000;
night = 3700;
};
};
}
|