Added missing config attribute.

This commit is contained in:
Raphaël Numbus
2026-02-24 22:39:35 +01:00
parent f301f48227
commit f0e304507b
3 changed files with 32 additions and 26 deletions
+8 -6
View File
@@ -1,11 +1,13 @@
{ config, ... }:
{
networking.nftables.enable = true;
networking.firewall = {
enable = true;
allowPing = true;
allowedTCPPorts = [ 53 80 443 ];
allowedUDPPorts = [ 53 443 ];
config = {
networking.nftables.enable = true;
networking.firewall = {
enable = true;
allowPing = true;
allowedTCPPorts = [ 53 80 443 ];
allowedUDPPorts = [ 53 443 ];
};
};
}