dotfiles/nixos/configs/location.nix
2025-06-05 14:19:27 +02:00

14 lines
259 B
Nix

{ lib, pkgs, ... }: {
# Use Geoclue2 for GPS info.
services.geoclue2 = {
enable = true;
appConfig = {
gnome-maps = {
isAllowed = true;
isSystem = false;
};
};
};
}