10 lines
172 B
Nix
10 lines
172 B
Nix
{inputs, ...}: let
|
|
geo = import "${inputs.self}/locale/geo.nix";
|
|
in {
|
|
services.wlsunset = {
|
|
enable = true;
|
|
latitude = geo.lat;
|
|
longitude = geo.long;
|
|
};
|
|
}
|