Disable ipv6, attempt 2

This commit is contained in:
Thomas Avé 2026-03-13 14:55:34 +07:00
parent 68c74a3863
commit 22284efb55
1 changed files with 6 additions and 0 deletions

View File

@ -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;
};
} }