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
commit 103180155d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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