8 lines
241 B
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"];
|
|
}
|