From e4aece898173bc66538e557f4f3f7de89678de33 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Thu, 7 May 2026 14:07:09 -0700 Subject: [PATCH] mobili udev --- extras/dev.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/extras/dev.nix b/extras/dev.nix index 6c57d0e..9893802 100644 --- a/extras/dev.nix +++ b/extras/dev.nix @@ -158,8 +158,18 @@ services.udev.extraRules = '' SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic GDB Server", SYMLINK+="ttyBmpGdb" SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic UART Port", SYMLINK+="ttyBmpTarg" + + # mobili + KERNEL=="js[0-9]*", MODE="0666" ''; + boot.kernel.sysctl = { + "net.core.rmem_max" = 67108864; + "net.core.wmem_max" = 67108864; + "net.core.rmem_max_default" = 67108864; + "net.core.wmem_max_default" = 67108864; + }; + virtualisation.docker = { daemon.settings = { features.buildkit = true;