mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
initial commit
This commit is contained in:
16
modules/home-manager/git/default.nix
Executable file
16
modules/home-manager/git/default.nix
Executable file
@ -0,0 +1,16 @@
|
||||
{ ... }: {
|
||||
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";
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user