From cf3cee4f5e239dbca914de100314c24defebaf96 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Thu, 23 Apr 2026 13:35:51 -0700 Subject: [PATCH 1/5] nix --- users/tao/helix.nix | 5 +++++ 1 file changed, 5 insertions(+) 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"]; 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 2/5] 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; From 012f6d1ad751e6665d793f1b43bf8e1f05272c32 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Sun, 10 May 2026 23:29:39 -0700 Subject: [PATCH 3/5] tail --- users/tao/nushell/extras/tailscale.nu | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/users/tao/nushell/extras/tailscale.nu b/users/tao/nushell/extras/tailscale.nu index 5f3df5d..fa8e8d9 100644 --- a/users/tao/nushell/extras/tailscale.nu +++ b/users/tao/nushell/extras/tailscale.nu @@ -73,11 +73,18 @@ export def tr [] { | return $in } +export def tw [] { + tailscale switch --list + | detect columns + | input list -d Tailnet + | get ID + | tailscale switch $in +} + export alias t = tailscale export alias ts = tailscale status export alias tu = tailscale up export alias td = tailscale down export alias ta = tailscale exit-node suggest -export alias tt = tailscale switch --list | detect columns | input list -d Tailnet | get ID | t switch $in export alias wno = ssh root@whyfi "etherwake -i br-lan 04:42:1A:E7:62:C3" From 46995d1a1209f47f3f719bfb30b496faa10b1413 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Thu, 23 Apr 2026 13:35:51 -0700 Subject: [PATCH 4/5] nix --- users/tao/helix.nix | 5 +++++ 1 file changed, 5 insertions(+) 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"]; From 58b1aa984f7f25b3766bcf92b2ed36dd0b466b4f 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 5/5] 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;