Skip to content

Commit

Permalink
fix(modules/home): git libsecret handling
Browse files Browse the repository at this point in the history
  • Loading branch information
bddvlpr committed Jun 5, 2024
1 parent 406d2b7 commit e36bb7c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion modules/home/git/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
{pkgs, ...}: {
programs.git = {
enable = true;
package = pkgs.gitFull;

userName = "Luna Simons";
userEmail = "[email protected]";
Expand All @@ -9,5 +10,9 @@
key = "42EDAE8164B99C3A4B835711AB69B6F3380869A8";
signByDefault = true;
};

extraConfig = {
credential.helper = "libsecret";
};
};
}

0 comments on commit e36bb7c

Please sign in to comment.