mirror of
https://github.com/Unkn0wnCat/dotfiles.git
synced 2025-04-30 10:26:19 +02:00
13 lines
229 B
Nix
13 lines
229 B
Nix
{
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
|
|
daemon.settings = {
|
|
ipv6 = true;
|
|
fixed-cidr-v6 = "2001:db8:1::/64";
|
|
ip6tables = true;
|
|
experimental = true;
|
|
};
|
|
};
|
|
}
|