From 77ce171dac8693c6ccfbbc643d70ee7c4ad640bc Mon Sep 17 00:00:00 2001 From: Culis Gaspard Date: Wed, 18 Sep 2024 13:49:52 +0200 Subject: [PATCH] helix: Set "EDITOR" env variable in nix config --- editor/helix/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/helix/default.nix b/editor/helix/default.nix index 5faf18e..13c7afb 100644 --- a/editor/helix/default.nix +++ b/editor/helix/default.nix @@ -10,4 +10,8 @@ ".config/helix/config.toml".source = ./config.toml; ".config/helix/languages.toml".source = ./languages.toml; }; + + home.sessionVariables = { + EDITOR = "hx"; + }; }