10 lines
214 B
Nix
10 lines
214 B
Nix
{pkgs, ...}: {
|
|
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
|
programs.git = {
|
|
package = pkgs.gitAndTools.gitFull;
|
|
extraConfig = {
|
|
credential.helper = "libsecret";
|
|
};
|
|
};
|
|
}
|