nixos-config/modules/ausweisapp.nix

11 lines
233 B
Nix
Raw Normal View History

2022-07-24 18:06:54 +02:00
{ config, lib, pkgs, ... }:
lib.mkIf config.sbruder.gui.enable {
environment.systemPackages = with pkgs; [
AusweisApp2
];
# required for SaC (smartphone as cardreader)
networking.firewall.allowedUDPPorts = [ 24727 ];
}