13 lines
196 B
Nix
13 lines
196 B
Nix
{ nixosConfig, ... }:
|
|
|
|
{
|
|
services.gammastep = {
|
|
enable = true;
|
|
inherit (nixosConfig.location) latitude longitude;
|
|
temperature = {
|
|
day = 6500;
|
|
night = 3500;
|
|
};
|
|
};
|
|
}
|