From df9a370408790ad562044ed452729c83384ca08b Mon Sep 17 00:00:00 2001 From: matt1432 Date: Mon, 6 Jan 2025 14:28:27 -0500 Subject: [PATCH] fix(git): change includeif to work with https --- homeManagerModules/shell/git/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeManagerModules/shell/git/default.nix b/homeManagerModules/shell/git/default.nix index 9723111c..5cce5f12 100644 --- a/homeManagerModules/shell/git/default.nix +++ b/homeManagerModules/shell/git/default.nix @@ -9,7 +9,7 @@ self: { cfg = config.programs.bash; mkRemoteConf = remote: email: name: { - condition = "hasconfig:remote.*.url:${remote}:*/**"; + condition = "hasconfig:remote.*.url:${remote}*/**"; contents.user = {inherit email name;}; }; mkDefaultRemote = remote: mkRemoteConf remote "matt@nelim.org" "matt1432";