6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ pkgs, config, lib, ...}:
|
|
with lib;
|
|
let
|
|
cfg = config.programs.mepo;
|
|
in
|
|
{
|
|
options.programs.mepo = {
|
|
enable = mkEnableOption "Mepo, a fast, simple and hackable OSM map viewer";
|
|
|
|
locationBackends = {
|
|
gpsd = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable location detection via gpsd.
|
|
This may require additional configuration of gpsd, see [here](#opt-services.gpsd.enable)
|
|
'';
|
|
};
|
|
|
|
geoclue = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Whether to enable location detection via geoclue";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [
|
|
mepo
|
|
] ++ lib.optional cfg.locationBackends.geoclue geoclue2-with-demo-agent
|
|
++ lib.optional cfg.locationBackends.gpsd gpsd;
|
|
|
|
services.geoclue2 = mkIf cfg.locationBackends.geoclue {
|
|
enable = true;
|
|
appConfig.where-am-i = {
|
|
isAllowed = true;
|
|
isSystem = false;
|
|
};
|
|
};
|
|
|
|
services.gpsd.enable = cfg.locationBackends.gpsd;
|
|
};
|
|
|
|
meta.maintainers = with maintainers; [ laalsaas ];
|
|
}
|