From ef907be3075688313a3006c38ed8a2a71f1ba217 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Thu, 26 Dec 2024 19:37:57 +0200 Subject: [PATCH] Fixed git credential issue --- nixos/configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 8d405a9..ee2b619 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -19,10 +19,11 @@ programs.git = { enable = true; - extraConfig = '' - [credential] + config = { + credential = { helper = store - ''; + ;} + }; }; services.openssh.enable = true;