From ff6f15d2e3e8805305a794f34980470fc2029274 Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Fri, 10 Oct 2025 13:48:05 +0200 Subject: [PATCH] default EDITOR to nvim in home config --- home/base.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/base.nix b/home/base.nix index 79bbc8e..3a698a3 100644 --- a/home/base.nix +++ b/home/base.nix @@ -30,6 +30,7 @@ ]; home.sessionVariables = { + EDITOR = "nvim"; GOPATH = "${config.home.homeDirectory}/.local/share/go"; GOMODCACHE = "${config.home.homeDirectory}/.cache/go/pkg/mod"; CCACHE_MAXSIZE = "100Gi";