From d0ee7b139cc9073244576010129d949d2f13e0da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Wed, 2 Oct 2024 15:42:46 +0100 Subject: [PATCH] make sure zsh editor config can be materialised on mac --- nixos/helix/home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/helix/home.nix b/nixos/helix/home.nix index 6b09ba7f..d3feee9d 100644 --- a/nixos/helix/home.nix +++ b/nixos/helix/home.nix @@ -14,8 +14,8 @@ in { VISUAL = lib.mkForce helix; }; programs.zsh.sessionVariables = { - EDITOR = lib.mkForce helix; - VISUAL = lib.mkForce helix; + EDITOR = helix; + VISUAL = helix; }; systemd.user.sessionVariables = { EDITOR = lib.mkForce helix;