From e9ddbc5d0ed34329b5dd9d1f1ec6b8bc96d5e5b5 Mon Sep 17 00:00:00 2001 From: mikl Date: Wed, 1 Jul 2026 17:19:25 +0300 Subject: [PATCH] fix: use nested attribute for credential config --- home/git.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/home/git.nix b/home/git.nix index 8e5335c..66e45d4 100644 --- a/home/git.nix +++ b/home/git.nix @@ -27,8 +27,10 @@ diff.algorithm = "histogram"; # Use osxkeychain for forgejo and other HTTPS remotes - credential.helper = "osxkeychain"; - "credential.https://git.iscg.dev.helper" = "osxkeychain"; + credential = { + helper = "osxkeychain"; + "https://git.iscg.dev".helper = "osxkeychain"; + }; # Color output color.ui = "auto";