{ pkgs, ... }: { virtualisation = { containers.enable = true; oci-containers.backend = "podman"; podman.enable = true; }; environment = { persistence."/persist"."/var/lib/containers" = { }; systemPackages = with pkgs; [ podman-compose ]; }; }