diff options
author | Linnnus <[email protected]> | 2023-10-21 21:26:02 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-10-21 21:26:02 +0200 |
commit | e302c1c31153c4d21337809d8444161e6f76df0f (patch) | |
tree | 8022a5146ab95ed1f0f1b1b652fab31f7f463568 | |
parent | 601245148c9d6b06956d45031b575c8640f6b9e0 (diff) |
home/git: Fix git-credential configuration
-rw-r--r-- | home/git/default.nix | 2 |
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"]; }; }; } |