nixos-configuration/home-manager/modules/sway/gammastep.nix
2021-12-15 00:59:49 +00:00

12 lines
196 B
Nix

{ nixosConfig, ... }:
{
services.gammastep = {
enable = true;
inherit (nixosConfig.location) latitude longitude;
temperature = {
day = 6500;
night = 3500;
};
};
}