14 lines
219 B
Nix
14 lines
219 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [./containers];
|
||
|
|
||
|
virtualisation.podman = {
|
||
|
enable = true;
|
||
|
defaultNetwork.settings = {dns_enabled = true;};
|
||
|
};
|
||
|
virtualisation.oci-containers.backend = "podman";
|
||
|
}
|