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