From cb1ddc2109391a65d856df069e3e9e5b1c8f6c26 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Tue, 31 Mar 2026 21:11:00 +0000 Subject: [PATCH] Update common/configuration.nix --- common/configuration.nix | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/common/configuration.nix b/common/configuration.nix index 0d8eaf4..afed0b9 100644 --- a/common/configuration.nix +++ b/common/configuration.nix @@ -63,14 +63,23 @@ nix.settings = { }; - programs.git = { - enable = true; - package = pkgs.git; - config = { - credential.helper = "store"; +# programs.git = { +# enable = true; +# package = pkgs.git; +# config = { +# credential.helper = "store"; +# }; +# }; +programs.git = { + enable = true; + package = pkgs.git; + config = { + credential = { + helper = "store --file=/home/nixos/.git-credentials"; + useHttpPath = true; }; }; - +}; } \ No newline at end of file