From 75b3f8d1f4c296c0ffa58cc2e650a12c122bd4b4 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 22 Oct 2024 15:36:22 +0200 Subject: [PATCH] podman: add slirp4netns to the wrapper --- modules/common/linux/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/common/linux/default.nix b/modules/common/linux/default.nix index 2fae826..91c37ab 100644 --- a/modules/common/linux/default.nix +++ b/modules/common/linux/default.nix @@ -71,6 +71,7 @@ let virtualisation = { pkgs, ... }: mkIf cfg.enable { virtualisation.podman = { enable = true; + extraPackages = [ pkgs.slirp4netns ]; dockerCompat = true; defaultNetwork.settings.dns_enabled = true; };