diff --git a/nixos/common/services/geoclue.nix b/nixos/common/services/geoclue.nix index 3601d556..9aed4024 100644 --- a/nixos/common/services/geoclue.nix +++ b/nixos/common/services/geoclue.nix @@ -1,7 +1,14 @@ { lib, ... }: { services.geoclue2 = { enable = true; + enableWifi = true; + enable3G = true; + enableCDMA = true; + enableNmea = true; + enableModernGPS = true; geoProviderUrl = "https://api.beacondb.net/v1/geolocate"; + submissionUrl = "https://api.beacondb.net/v2/geosubmit"; + submissionNick = "geoclue2-nixos"; }; location.provider = lib.mkDefault "geoclue2";