feat: update allowed TCP port in sgx network configuration

This commit updates the allowed TCP port for networking in the SGX configuration file. Instead of hardcoding the port number, it now uses the port specified in the netatalk configuration. This change enables more flexibility in port assignment and reduces potential conflicts.
This commit is contained in:
Harald Hoyer 2024-07-19 11:45:38 +02:00
parent 5615b246b6
commit d44ef254fa

View file

@ -37,6 +37,6 @@
}; };
}; };
networking.firewall.allowedTCPPorts = [ 548 ]; networking.firewall.allowedTCPPorts = [ config.services.netatalk.port ];
networking.firewall.allowPing = true; networking.firewall.allowPing = true;
} }