Use libsecret for git

This commit is contained in:
Michael Thomas 2021-02-18 20:36:03 -05:00
parent 3f1e7cc4fd
commit 4baf0f215c

View File

@ -4,9 +4,14 @@
git-lfs
];
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
userEmail = "michaelhthomas@outlook.com";
userName = "Michael Thomas";
extraConfig = {
credential.helper = "libsecret";
};
};
}