mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
26 lines
508 B
Nix
26 lines
508 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
location.provider = "geoclue2";
|
|
|
|
services.geoclue2 = {
|
|
enable = true;
|
|
enableDemoAgent = true;
|
|
|
|
appConfig."gammastep" = {
|
|
desktopID = "gammastep";
|
|
isAllowed = true;
|
|
isSystem = false;
|
|
# Empty list allows all users
|
|
users = [ ];
|
|
};
|
|
appConfig."gammastep-indicator" = {
|
|
desktopID = "gammastep-indicator";
|
|
isAllowed = true;
|
|
isSystem = false;
|
|
# Empty list allows all users
|
|
users = [ ];
|
|
};
|
|
|
|
};
|
|
}
|