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