Disable IPv6 for now, it doesn't work properly on the connection here

This commit is contained in:
Thomas Avé 2026-03-10 13:56:55 +07:00
parent 6ffdb4bf9d
commit 6394567ffa
1 changed files with 8 additions and 0 deletions

View File

@ -54,6 +54,7 @@ in {
networking.hostId = "4e859062"; networking.hostId = "4e859062";
networking.interfaces.wlan0.useDHCP = lib.mkDefault true; networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
networking.enableIPv6 = false;
networking.wireless.iwd.enable = true; networking.wireless.iwd.enable = true;
networking.wireless.iwd.settings = { networking.wireless.iwd.settings = {
IPv6 = { IPv6 = {
@ -146,4 +147,11 @@ in {
serviceConfig = { Restart = "on-failure"; RestartSec = "2s"; }; serviceConfig = { Restart = "on-failure"; RestartSec = "2s"; };
unitConfig.StartLimitIntervalSec = 0; unitConfig.StartLimitIntervalSec = 0;
}; };
services.usbmuxd.enable = true;
environment.systemPackages = with pkgs; [
ifuse
libimobiledevice
scrcpy
v4l-utils
];
} }