From c71ca90e941bbaad9da25810fab87e2eb9104d3e Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Tue, 29 Apr 2025 13:57:19 +0200 Subject: [PATCH] hosts/common.nix: do not set EDITOR env var to the whole helix path --- hosts/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/common.nix b/hosts/common.nix index 5a9bef2..17b8626 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -42,5 +42,5 @@ in { inherit wrapped-helix fish; }; # helix as the only editor, a reasonable choice. - environment.sessionVariables.EDITOR = pkgs.lib.getExe' wrapped-helix "hx"; + environment.sessionVariables.EDITOR = "hx"; }