2024-06-25 13:11:30 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
virtualisation.containers.enable = true;
|
|
|
|
|
|
|
|
virtualisation.podman = {
|
|
|
|
enable = true;
|
|
|
|
dockerCompat = true;
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
|
|
};
|
|
|
|
|
2024-09-12 18:43:03 +02:00
|
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
|
2024-06-25 13:11:30 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
dive
|
|
|
|
podman-tui
|
|
|
|
podman-compose
|
|
|
|
];
|
|
|
|
}
|