Fix git config
This commit is contained in:
parent
38546da9cc
commit
fb90089380
1 changed files with 16 additions and 0 deletions
|
@ -4,4 +4,20 @@
|
|||
home.sessionVariables = {
|
||||
DOTNET_ROOT = "${pkgs.dotnet-runtime_7}";
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
userName = "askiiart";
|
||||
userEmail = "dev@askiiart.net";
|
||||
extraConfig = {
|
||||
commit.gpgsign = true;
|
||||
user.signingkey = "02EFA1CE3C3E4AAD7A863AB8ED24985CA884CD61";
|
||||
push = { autoSetupRemote = true; };
|
||||
credential = {
|
||||
credentialStore = "gpg";
|
||||
helper = "${pkgs.git-credential-manager}/bin/git-credential-manager";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue