forest/roles/podman.nix

8 lines
241 B
Nix

{ config, pkgs, ... }: {
virtualisation.podman.enable = true;
virtualisation.oci-containers.backend = "podman";
environment.systemPackages = with pkgs; [
podman-compose
];
networking.firewall.trustedInterfaces = ["podman0"];
}