puter/common/system/features/location.nix

8 lines
158 B
Nix
Raw Normal View History

2023-10-08 10:23:00 +00:00
{lib, ...}: {
location.provider = "geoclue2";
2023-10-08 10:35:55 +00:00
services = {
automatic-timezoned.enable = true;
geoclue2.enableDemoAgent = lib.mkForce true;
};
2023-10-08 10:23:00 +00:00
}