nixos-config/users/simon/modules/sway/gammastep.nix

13 lines
196 B
Nix
Raw Normal View History

2021-07-25 08:36:19 +02:00
{ nixosConfig, ... }:
{
services.gammastep = {
enable = true;
2021-07-25 08:36:19 +02:00
inherit (nixosConfig.location) latitude longitude;
temperature = {
day = 6500;
night = 3500;
};
};
}