14 lines
224 B
Nix
14 lines
224 B
Nix
{...}: {
|
|
virtualisation = {
|
|
oci-containers = {
|
|
backend = "podman";
|
|
};
|
|
podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
dockerSocket.enable = true;
|
|
};
|
|
docker.enable = false;
|
|
};
|
|
}
|