Disable IPv6 for now, it doesn't work properly on the connection here
This commit is contained in:
parent
6ffdb4bf9d
commit
6394567ffa
|
|
@ -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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue