From 38179e1cfe31dbc30228ad9d9d33a74448798342 Mon Sep 17 00:00:00 2001 From: Sebastian Moser Date: Fri, 8 Mar 2024 22:03:47 +0100 Subject: [PATCH] fixed my EDITOR env var --- users/common/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/common/home.nix b/users/common/home.nix index 960f119..a917ac9 100644 --- a/users/common/home.nix +++ b/users/common/home.nix @@ -20,7 +20,7 @@ programs.nix-index.enableZshIntegration = false; home.sessionVariables = { - EDITOR = "nvim${self}"; + EDITOR = "nvim"; }; home.sessionPath = [ "${self}/mybin" ];