From 802b18e4060ff38b11a9a3efe0255973f784471f Mon Sep 17 00:00:00 2001 From: elf Pavlik Date: Wed, 17 Dec 2025 11:34:32 -0600 Subject: [PATCH] mention iptable_nat in README Signed-off-by: elf Pavlik --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 0fc4c07..390a5f5 100644 --- a/README.md +++ b/README.md @@ -40,3 +40,12 @@ channel](https://discord.com/channels/707636530424053791/1122966469425233940) }); } ``` + +### Kernel module + +The Dagger Engine requires the `iptable_nat` Linux kernel module in order to function properly. +You can add it in your `configuration.nix` + +```nix +boot.kernelModules = [ "iptable_nat" ]; +```