diff --git a/common/system/features/location.nix b/common/system/features/location.nix index e26b187..35577b5 100644 --- a/common/system/features/location.nix +++ b/common/system/features/location.nix @@ -1,5 +1,7 @@ {lib, ...}: { location.provider = "geoclue2"; - services.automatic-timezoned.enable = true; - services.geoclue2.enableDemoAgent = lib.mkForce true; + services = { + automatic-timezoned.enable = true; + geoclue2.enableDemoAgent = lib.mkForce true; + }; }