nixos/geoclue2: set default location service to beaconDB (#391845)

This commit is contained in:
Martin Weinelt
2025-04-30 22:15:11 +02:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
@@ -593,6 +593,8 @@
[is removed](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=c01f664e4ca210823b7594b50669bbd9b0a3c3b0)
in Linux 6.13.
- `services.geoclue2` now uses [beaconDB](https://beacondb.net/) as a default geolocation service, replacing Mozilla Location Services which was [retired in June 2024](https://github.com/mozilla/ichnaea/issues/2065).
- `authelia` version 4.39.0 has made some changes which deprecate older configurations.
They are still expected to be working until future version 5.0.0, but will generate warnings in logs.
Read the [release notes](https://www.authelia.com/blog/4.39-release-notes/) for human readable summaries of the changes.
+2 -2
View File
@@ -180,7 +180,7 @@ in
geoProviderUrl = lib.mkOption {
type = lib.types.str;
default = "https://location.services.mozilla.com/v1/geolocate?key=geoclue";
default = "https://api.beacondb.net/v1/geolocate";
example = "https://www.googleapis.com/geolocation/v1/geolocate?key=YOUR_KEY";
description = ''
The url to the wifi GeoLocation Service.
@@ -210,7 +210,7 @@ in
submissionUrl = lib.mkOption {
type = lib.types.str;
default = "https://location.services.mozilla.com/v1/submit?key=geoclue";
default = "https://api.beacondb.net/v2/geosubmit";
description = ''
The url to submit data to a GeoLocation Service.
'';