Merge pull request #70447 from joachifm/feat/containers-private-networking-lockKernelModules-compat

nixos/containers: explicitly load kernel modules for networking
This commit is contained in:
Joachim F
2019-10-06 11:00:36 +00:00
committed by GitHub

View File

@@ -824,5 +824,12 @@ in
'';
environment.systemPackages = [ pkgs.nixos-container ];
boot.kernelModules = [
"bridge"
"macvlan"
"tap"
"tun"
];
});
}