13 lines
200 B
Nix
13 lines
200 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# Set location used by redshift
|
|
location.provider = "manual";
|
|
location.latitude = 47.92;
|
|
location.longitude = 10.12;
|
|
services.redshift.enable = true;
|
|
}
|