From 698a3844c400fed486a284bb714a04cf3d471244 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 12 Jan 2024 15:41:51 +0100 Subject: [PATCH] Git: fix missing libsecret credential helper --- modules/hm/git.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/hm/git.nix b/modules/hm/git.nix index 5a26db3..0f0ba90 100644 --- a/modules/hm/git.nix +++ b/modules/hm/git.nix @@ -93,6 +93,7 @@ in programs = { git = { enable = true; + package = pkgs.gitFull; userName = "Filippo Berto"; userEmail = "berto.f@protonmail.com"; # signing = { @@ -103,7 +104,7 @@ in "add.interactive".useBuiltin = false; commit.gpgSign = true; core.editor = "hx"; - # credential.helper = "git-credential-libsecret"; + credential.helper = "libsecret"; delta = { line-numbers = true; navigate = true;