{ config, ... }: { virtualisation.oci-containers.containers.dozzle = { inherit (config.modules.containers) extraOptions; image = "amir20/dozzle:latest"; autoStart = true; ports = [ "127.0.0.1:8091:8080" ]; volumes = let hostSocket = if config.modules.containers.engine == "podman" then "/run/podman/podman.sock" else "/var/run/docker.sock"; in [ "${hostSocket}:/var/run/docker.sock" ]; }; }