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