remove libsecret support from git

This commit is contained in:
Dmitriy Kholkin 2020-08-06 23:41:58 +04:00
parent fd50f4d768
commit 478580a00f
2 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@
xonar-fp = pkgs.callPackage ./applications/xonar-fp.nix { }; xonar-fp = pkgs.callPackage ./applications/xonar-fp.nix { };
git-with-libsecret = super.git.override { withLibsecret = true; }; # git-with-libsecret = super.git.override { withLibsecret = true; };
# spotifyd = super.spotifyd.override { withPulseAudio = true; }; # spotifyd = super.spotifyd.override { withPulseAudio = true; };

View File

@ -16,14 +16,14 @@
programs.git = { programs.git = {
enable = true; enable = true;
package = pkgs.git-with-libsecret; # package = pkgs.git-with-libsecret;
userEmail = "alukard.develop@gmail.com"; userEmail = "alukard.develop@gmail.com";
userName = "Dmitriy Kholkin"; userName = "Dmitriy Kholkin";
signing.key = "922DA6E758A0FE4CFAB4E4B2FD266B810DF48DF2"; signing.key = "922DA6E758A0FE4CFAB4E4B2FD266B810DF48DF2";
extraConfig = { extraConfig = {
credential = { # credential = {
helper = "libsecret"; # helper = "libsecret";
}; # };
core = { core = {
editor = "code --wait"; editor = "code --wait";
}; };