Compare commits

...

2 commits

Author SHA1 Message Date
Tao Tien
e4aece8981 mobili udev 2026-05-08 14:10:04 -07:00
Tao Tien
cf3cee4f5e nix 2026-05-08 14:10:04 -07:00
2 changed files with 15 additions and 0 deletions

View file

@ -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;

View file

@ -251,6 +251,11 @@
# keep-sorted end
];
language-server = {
nil = {
config = {
autoArchive = true;
};
};
deno-lsp = {
command = "deno";
args = ["lsp"];