diff --git a/modules/apps/dev.nix b/modules/apps/dev.nix index e9daaac..9256ce0 100644 --- a/modules/apps/dev.nix +++ b/modules/apps/dev.nix @@ -30,6 +30,7 @@ in { jetbrains.rust-rover jetbrains.webstorm mono + nixd nodejs_22 platformio-core python313 diff --git a/modules/apps/terminal/helix.nix b/modules/apps/terminal/helix.nix index a7b2bfd..b33d97b 100644 --- a/modules/apps/terminal/helix.nix +++ b/modules/apps/terminal/helix.nix @@ -6,6 +6,7 @@ }: { programs.helix = { enable = true; + defaultEditor = true; settings = { theme = "catppuccin_macchiato"; editor.cursor-shape = { @@ -14,11 +15,6 @@ select = "underline"; }; }; - languages.language = [ - { - name = "nix"; - auto-format = false; - } - ]; + languages.language = []; }; }