summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2023-10-21 21:26:02 +0200
committerLinnnus <[email protected]>2023-10-21 21:26:02 +0200
commite302c1c31153c4d21337809d8444161e6f76df0f (patch)
tree8022a5146ab95ed1f0f1b1b652fab31f7f463568
parent601245148c9d6b06956d45031b575c8640f6b9e0 (diff)
home/git: Fix git-credential configuration
-rw-r--r--home/git/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/git/default.nix b/home/git/default.nix
index 3889978..24ff0bb 100644
--- a/home/git/default.nix
+++ b/home/git/default.nix
@@ -18,7 +18,7 @@ in {
extraConfig.credential = {
"https://github.com/".username = "linnnus";
- helper = (optional isDarwin ["osxkeychain"]) ++ ["cache"];
+ helper = (optional isDarwin "osxkeychain") ++ ["cache"];
};
};
}