mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
b20df24e2c
Optional functionality of AusweisApp2 requires an UDP port to be opened. The module allows for convenient configuration and serves as documentation. See also https://github.com/NixOS/nixpkgs/issues/136269
26 lines
617 B
Nix
26 lines
617 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.ausweisapp;
|
|
in
|
|
{
|
|
options.programs.ausweisapp = {
|
|
enable = mkEnableOption (lib.mdDoc "AusweisApp2");
|
|
|
|
openFirewall = mkOption {
|
|
description = lib.mdDoc ''
|
|
Whether to open the required firewall ports for the Smartphone as Card Reader (SaC) functionality of AusweisApp2.
|
|
'';
|
|
default = false;
|
|
type = lib.types.bool;
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ AusweisApp2 ];
|
|
networking.firewall.allowedUDPPorts = lib.optionals cfg.openFirewall [ 24727 ];
|
|
};
|
|
}
|