From ff6f15d2e3e8805305a794f34980470fc2029274 Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Fri, 10 Oct 2025 13:48:05 +0200 Subject: [PATCH 1/2] 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"; From 7d347136106e282d2533ce8dc4de97dbbca19c9a Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Fri, 10 Oct 2025 13:48:30 +0200 Subject: [PATCH 2/2] config for larbin --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index 6a7e305..59f0f42 100644 --- a/flake.nix +++ b/flake.nix @@ -54,6 +54,11 @@ { targets.genericLinux.enable = true; } ]; + homeConfigurations."anvaure@msm-lnx-ipva-01" = homeConfig [ + { home.username = "anvaure"; } + ./home/base.nix + ]; + homeConfigurations."ant@hs" = homeConfig [ { home.username = "ant"; } ./home/more-software.nix