From 2db5ed810b7ce1ada31c0d6239a1d40fa8790a1a Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Wed, 11 Jun 2025 16:45:44 +0200 Subject: [PATCH] Helix with nixd works :D --- modules/apps/dev.nix | 1 + modules/apps/terminal/helix.nix | 8 ++------ 2 files changed, 3 insertions(+), 6 deletions(-) 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 = []; }; }