1
0
Fork 0
puter/profiles/dynamic/location.nix
2025-07-01 19:02:19 +02:00

13 lines
146 B
Nix

{
config,
lib,
...
}:
let
cfg = config.profiles.dynamic;
in
{
config = lib.mkIf cfg.enable {
location.provider = "geoclue2";
};
}