From 6c988849640d523df6878a21a6ce280ea50d41e8 Mon Sep 17 00:00:00 2001 From: Jan Grosser Date: Fri, 16 Aug 2024 23:00:54 +0200 Subject: [PATCH] Open port udp/24727 for AusweisApp See: https://github.com/NixOS/nixpkgs/issues/136269#issuecomment-909191258 --- hosts/p14s/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/p14s/configuration.nix b/hosts/p14s/configuration.nix index 73c93c1..6e8b8a7 100644 --- a/hosts/p14s/configuration.nix +++ b/hosts/p14s/configuration.nix @@ -181,7 +181,9 @@ # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ 22 ]; - # networking.firewall.allowedUDPPorts = [ ... ]; + networking.firewall.allowedUDPPorts = [ + 24727 # Auto discovery for AusweisApp + ]; # Or disable the firewall altogether. # networking.firewall.enable = false;