nixos-configuration/modules/podman.nix

12 lines
202 B
Nix
Raw Normal View History

2024-10-26 18:15:50 +02:00
{...}: {
virtualisation = {
containers.enable = true;
podman = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
autoPrune.enable = true;
};
};
}