2024-06-28 14:36:51 +00:00
|
|
|
{ config, pkgs, ... }: {
|
2024-09-23 15:20:59 +00:00
|
|
|
virtualisation.podman = {
|
|
|
|
enable = true;
|
|
|
|
dockerSocket.enable = true;
|
|
|
|
};
|
2024-06-22 08:24:00 +00:00
|
|
|
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
|
|
|
}
|