lib/lxc-container: net.ipv6.conf.*.use_tempaddr=0

This commit is contained in:
Astro 2019-11-03 21:14:31 +01:00
parent aa124f2fee
commit a1db032dda
1 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,10 @@
nix.buildCores = lib.mkDefault 4;
#networking.useNetworkd = true;
networking.interfaces.eth0.useDHCP = true;
networking.interfaces.eth0 = {
useDHCP = true;
preferTempAddress = false;
};
boot.isContainer = true;