mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-07 02:06:34 +05:30
17 lines
316 B
Nix
Executable File
17 lines
316 B
Nix
Executable File
{ ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "0xTux";
|
|
userEmail = "0xtux@pm.me";
|
|
signing = {
|
|
key = "~/.ssh/id_ed25519.pub";
|
|
signByDefault = true;
|
|
};
|
|
extraConfig = {
|
|
init.defaultBranch = "main";
|
|
commit.gpgSign = true;
|
|
gpg.format = "ssh";
|
|
};
|
|
};
|
|
}
|