From f52ee8023cdf3a2bb548539bf59b43763170ff08 Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Sun, 8 Oct 2023 12:35:55 +0200 Subject: [PATCH] formt --- common/system/features/location.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; + }; }