From 0aeec8ebe7cdaa4d3a9fee4f3198a64617edb1cf Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Mon, 8 Apr 2024 09:36:43 -0400 Subject: [PATCH] Add zfs support to podman --- modules/hosts/nixos/nixnuc/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/hosts/nixos/nixnuc/default.nix b/modules/hosts/nixos/nixnuc/default.nix index 541c968..39df3ee 100644 --- a/modules/hosts/nixos/nixnuc/default.nix +++ b/modules/hosts/nixos/nixnuc/default.nix @@ -186,6 +186,7 @@ virtualisation.podman = { enable = true; dockerCompat = true; + extraPackages = [ pkgs.zfs ]; # Required if the host is running ZFS # Required for containers under podman-compose to be able to talk to each other. defaultNetwork.settings.dns_enabled = true;