nixos-config/common/programs/git.nix

20 lines
301 B
Nix
Raw Permalink Normal View History

2024-04-22 04:57:27 +02:00
{
programs.git = {
enable = true;
2024-05-30 09:03:54 +02:00
lfs.enable = true;
2024-04-22 04:57:27 +02:00
config = {
user = {
name = "Tasia Iso";
email = "tasiaiso@proton.me";
gpg.format = "ssh";
commit.gpgsign = "true";
};
init = {
2024-07-31 16:27:07 +02:00
defaultBranch = "main";
2024-04-22 04:57:27 +02:00
};
};
};
}