This commit is contained in:
iFargle 2023-08-23 19:26:16 +09:00
parent 470ffb0d54
commit 104502ba7b
2 changed files with 15 additions and 1 deletions

View file

@ -10,7 +10,7 @@
user.signingkey = "64F6C4EB46C4543A"; user.signingkey = "64F6C4EB46C4543A";
commit.gpgsign = "true"; commit.gpgsign = "true";
}; };
} };
accounts = { accounts = {
email = { email = {

View file

@ -0,0 +1,14 @@
{ config, pkgs, hostname, hmStateVersion, ... }: {
home.stateVersion = hmStateVersion;
programs.git = {
userName = "albert";
userEmail = "albert@sysctl.io";
extraConfig = {
core.askPass = "false";
credential.helper = "cache --timeout=25920000";
user.signingkey = "64F6C4EB46C4543A";
commit.gpgsign = "true";
};
};
}