hosts/common.nix: do not set EDITOR env var to the whole helix path

This commit is contained in:
Bloxx12 2025-04-29 13:57:19 +02:00
commit c71ca90e94
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -42,5 +42,5 @@ in {
inherit wrapped-helix fish; inherit wrapped-helix fish;
}; };
# helix as the only editor, a reasonable choice. # helix as the only editor, a reasonable choice.
environment.sessionVariables.EDITOR = pkgs.lib.getExe' wrapped-helix "hx"; environment.sessionVariables.EDITOR = "hx";
} }