Disable ipv6, attempt 2
This commit is contained in:
parent
68c74a3863
commit
22284efb55
|
|
@ -175,9 +175,15 @@ in {
|
||||||
};
|
};
|
||||||
services.usbmuxd.enable = true;
|
services.usbmuxd.enable = true;
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
libcamera
|
||||||
ifuse
|
ifuse
|
||||||
libimobiledevice
|
libimobiledevice
|
||||||
scrcpy
|
scrcpy
|
||||||
v4l-utils
|
v4l-utils
|
||||||
];
|
];
|
||||||
|
boot.kernel.sysctl = {
|
||||||
|
"net.ipv6.conf.all.disable_ipv6" = 1;
|
||||||
|
"net.ipv6.conf.default.disable_ipv6" = 1;
|
||||||
|
"net.ipv6.conf.lo.disable_ipv6" = 1;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue