From 84e26f0573dc439336419562b13460b72ebe3d4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 23 Jul 2024 16:32:31 -0300 Subject: [PATCH] docker: disable iptables to fix bad security --- system/containers.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/containers.nix b/system/containers.nix index 19698e5..2e8e52a 100644 --- a/system/containers.nix +++ b/system/containers.nix @@ -4,6 +4,9 @@ virtualisation.docker = { enable = true; + daemon.settings = { + "iptables" = false; + }; autoPrune = { enable = true; dates = "monthly";