feat(pm/minion): set up for leptos #113

closed
opened by a.starrysky.fyi targeting main from private/minion/push-oqywmpqruopz
Changed files
+13
packetmix
homes
minion
+13
packetmix/homes/minion/helix.nix
··· 15 15 "ui.virtual.whitespace" = "surface0"; # The default catppuccin_latte theme displays rendered whitespace way too harshly... 16 16 }; 17 17 }; 18 + 19 + languages = { 20 + language = [ 21 + { 22 + name = "rust"; 23 + } 24 + ]; 25 + language-server.rust-analyzer.config = { 26 + cargo.allFeatures = true; 27 + diagnostics.disabled = [ "proc-macro-disabled" ]; 28 + procMacro.ignored.leptos_macro = [ "server" ]; 29 + }; 30 + }; 18 31 }; 19 32 }