mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 21:33:11 +01:00
16 lines
301 B
Nix
16 lines
301 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Rouven Seifert";
|
||
|
userEmail = "rouven@rfive.de";
|
||
|
extraConfig = {
|
||
|
user.signingkey = "B95E8FE6B11C4D09";
|
||
|
pull.rebase = false;
|
||
|
init.defaultBranch = "main";
|
||
|
commit.gpgsign = true;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|