27 lines
449 B
Nix
27 lines
449 B
Nix
{...}:
|
|
let
|
|
montreal = {
|
|
# robert-bourassa/rené-lévesque
|
|
latitude = 45.4987;
|
|
longitude = -73.5703;
|
|
};
|
|
nagpur = {
|
|
# zero mile
|
|
latitude = 21.147399;
|
|
longitude = 79.080857;
|
|
};
|
|
zurich = {
|
|
# random spot
|
|
latitude = 74.21433;
|
|
longitude = 8.32245;
|
|
};
|
|
in
|
|
{
|
|
services.gammastep = {
|
|
enable = true;
|
|
temperature.day = 6500;
|
|
temperature.night = 4000;
|
|
inherit (montreal) latitude longitude;
|
|
};
|
|
}
|