Helix with nixd works :D

This commit is contained in:
KoenDR06 2025-06-11 16:45:44 +02:00
parent 918cd1665b
commit 2db5ed810b
2 changed files with 3 additions and 6 deletions

View file

@ -30,6 +30,7 @@ in {
jetbrains.rust-rover jetbrains.rust-rover
jetbrains.webstorm jetbrains.webstorm
mono mono
nixd
nodejs_22 nodejs_22
platformio-core platformio-core
python313 python313

View file

@ -6,6 +6,7 @@
}: { }: {
programs.helix = { programs.helix = {
enable = true; enable = true;
defaultEditor = true;
settings = { settings = {
theme = "catppuccin_macchiato"; theme = "catppuccin_macchiato";
editor.cursor-shape = { editor.cursor-shape = {
@ -14,11 +15,6 @@
select = "underline"; select = "underline";
}; };
}; };
languages.language = [ languages.language = [];
{
name = "nix";
auto-format = false;
}
];
}; };
} }