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; diff --git a/users/tao/helix.nix b/users/tao/helix.nix index ba326a4..b7b4390 100644 --- a/users/tao/helix.nix +++ b/users/tao/helix.nix @@ -251,6 +251,11 @@ # keep-sorted end ]; language-server = { + nil = { + config = { + autoArchive = true; + }; + }; deno-lsp = { command = "deno"; args = ["lsp"];