15 lines
230 B
Nix
15 lines
230 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
virtualisation = {
|
||
|
containers.enable = true;
|
||
|
|
||
|
podman = {
|
||
|
enable = true;
|
||
|
dockerCompat = true;
|
||
|
defaultNetwork.settings.dns_enabled = true;
|
||
|
};
|
||
|
|
||
|
oci-containers.backend = "podman";
|
||
|
};
|
||
|
}
|