Update common/configuration.nix

This commit is contained in:
2026-03-31 21:11:00 +00:00
parent 376d53de40
commit cb1ddc2109
+15 -6
View File
@@ -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;
};
};
};
}