forest/roles/podman.nix

12 lines
286 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
2024-09-23 15:20:59 +00:00
virtualisation.podman = {
enable = true;
dockerSocket.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
}