From 99d9f457d377dea918320ff71ab1b7c1fe3a9711 Mon Sep 17 00:00:00 2001 From: randogoth Date: Tue, 10 Feb 2026 09:25:23 +0200 Subject: [PATCH] rootless podman --- modules/system/virtualization.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/system/virtualization.nix b/modules/system/virtualization.nix index 7898cd7..cc5b3ec 100644 --- a/modules/system/virtualization.nix +++ b/modules/system/virtualization.nix @@ -7,11 +7,15 @@ containers.enable = true; podman = { enable = true; - dockerCompat = true; + dockerCompat = false; defaultNetwork.settings.dns_enabled = true; }; libvirtd.enable = true; }; programs.virt-manager.enable = true; + + systemd.sockets.podman.enable = false; + systemd.services.podman.enable = false; + }