Commit 155fd92

HPCesia <me@hpcesia.com>
2025-06-13 02:46:27
fix(editor): helix nix lsp config
1 parent bbed64b
Changed files (1)
home
base
tui
editors
home/base/tui/editors/helix/languages.nix
@@ -21,17 +21,16 @@
       }
     ];
     language-server = {
-      nil.config = {
-          formatting.command = "alejandra";
-          nix = {
-            maxMemoryMB = 4096;
-            flake = {
-              autoArchive = false;
-              autoEvalInputs = true;
-            };
+      nil.config.nil = {
+        formatting.command = ["alejandra"];
+        nix = {
+          maxMemoryMB = 4096;
+          flake = {
+            autoArchive = false;
+            autoEvalInputs = true;
           };
         };
-
+      };
     };
   };
 }