{ ... }: # Podman (Docker-compatible) + declarative OCI containers. # Copy the whoami block per app; publish ports and mount /mnt/data volumes. { virtualisation.podman = { enable = true; dockerCompat = true; defaultNetwork.settings.dns_enabled = true; }; virtualisation.oci-containers = { backend = "podman"; containers = { whoami = { image = "traefik/whoami:latest"; ports = [ "8080:80" ]; autoStart = true; }; }; }; }