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 = { # programs.git = {
enable = true; # enable = true;
package = pkgs.git; # package = pkgs.git;
config = { # config = {
credential.helper = "store"; # credential.helper = "store";
# };
# };
programs.git = {
enable = true;
package = pkgs.git;
config = {
credential = {
helper = "store --file=/home/nixos/.git-credentials";
useHttpPath = true;
}; };
}; };
};
} }