nixos/extra/location.nix
2021-02-28 22:16:36 +01:00

24 lines
519 B
Nix

{ config, lib, pkgs, ... }:
{
location.provider = "geoclue2";
services.geoclue2.enable = true;
services.geoclue2.enableDemoAgent = true;
services.geoclue2.appConfig."gammastep" = {
desktopID = "gammastep";
isAllowed = true;
isSystem = false;
# Empty list allows all users
users = [ ];
};
services.geoclue2.appConfig."gammastep-indicator" = {
desktopID = "gammastep-indicator";
isAllowed = true;
isSystem = false;
# Empty list allows all users
users = [ ];
};
}