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