From 6394567ffa5a82c33a7408d98318d669a3611da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Tue, 10 Mar 2026 13:56:55 +0700 Subject: [PATCH] Disable IPv6 for now, it doesn't work properly on the connection here --- hosts/Aloria/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/Aloria/default.nix b/hosts/Aloria/default.nix index d1457fc..81555b3 100644 --- a/hosts/Aloria/default.nix +++ b/hosts/Aloria/default.nix @@ -54,6 +54,7 @@ in { networking.hostId = "4e859062"; networking.interfaces.wlan0.useDHCP = lib.mkDefault true; + networking.enableIPv6 = false; networking.wireless.iwd.enable = true; networking.wireless.iwd.settings = { IPv6 = { @@ -146,4 +147,11 @@ in { serviceConfig = { Restart = "on-failure"; RestartSec = "2s"; }; unitConfig.StartLimitIntervalSec = 0; }; + services.usbmuxd.enable = true; + environment.systemPackages = with pkgs; [ + ifuse + libimobiledevice + scrcpy + v4l-utils + ]; }