18 lines
222 B
Nix
18 lines
222 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
daemon.settings = {
|
|
ipv6 = true;
|
|
ip6tables = true;
|
|
};
|
|
};
|
|
oci-containers.backend = "docker";
|
|
};
|
|
|
|
}
|