Switch gitFull -> custom git with libsecret enabled (but without the extra stuff)

This commit is contained in:
Evie Litherland-Smith 2024-07-08 09:41:34 +01:00
parent f6d4d93425
commit 4f77cdc801

View file

@ -6,7 +6,10 @@
}: { }: {
services.git-sync.enable = false; # Can't find pass for some reason... services.git-sync.enable = false; # Can't find pass for some reason...
programs.git = let programs.git = let
package = pkgs.gitFull; package = pkgs.git.override {
withLibsecret = true;
withSsh = true;
};
in { in {
inherit package; inherit package;
enable = true; enable = true;