diff --git a/modules/common/podman.nix b/modules/common/podman.nix index 9ec00f3..26fc17c 100644 --- a/modules/common/podman.nix +++ b/modules/common/podman.nix @@ -3,17 +3,6 @@ virtualisation.podman = { enable = true; # Rootless containers by default - # .container files in /etc/containers/systemd/ are auto-detected - }; - - # Nix-declared containers - virtualisation.oci-containers = { - backend = "podman"; - containers = { - nginx-example = { - image = "nginx:latest"; - ports = [ "9999:80" ]; - }; - }; + # Quadlet files in ~/.config/containers/systemd/ are auto-detected }; }