From 64c4c8f1218eaa87f0166c7fb3b901d60c8f3661 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Fri, 25 Apr 2025 11:22:50 +0200 Subject: [PATCH] home/cargo: move config envvar to correct module --- home/home.nix | 1 - home/programs/cargo.nix | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/home/home.nix b/home/home.nix index 338720b..43fa0ff 100644 --- a/home/home.nix +++ b/home/home.nix @@ -136,7 +136,6 @@ in { keyboard.options = [ "caps:escape" ]; sessionVariables = { - CARGO_NET_GIT_FETCH_WITH_CLI = "true"; PYTHONSTARTUP = "${config.xdg.configHome}/python/pyrc"; _JAVA_AWT_WM_NONREPARENTING = "1"; }; diff --git a/home/programs/cargo.nix b/home/programs/cargo.nix index 45c6ec7..a1bca95 100644 --- a/home/programs/cargo.nix +++ b/home/programs/cargo.nix @@ -6,4 +6,6 @@ cargo-new.vcs = "git"; }; }; + + home.sessionVariables.CARGO_NET_GIT_FETCH_WITH_CLI = "true"; }