forest/roles/podman.nix

9 lines
241 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
2023-10-12 19:36:26 +00:00
virtualisation.podman.enable = true;
virtualisation.oci-containers.backend = "podman";
environment.systemPackages = with pkgs; [
podman-compose
];
2024-07-07 23:11:06 +00:00
networking.firewall.trustedInterfaces = ["podman0"];
2023-10-12 19:36:26 +00:00
}