nix-dots/user/modules/git_nixos.nix
2021-08-16 16:14:56 -04:00

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";
};
};
}