omniflake/home/minimal/git.nix
2026-04-12 18:48:42 +02:00

13 lines
208 B
Nix

{...}:
{
programs.git = {
enable = true;
signing.format = "openpgp";
settings = {
pull.rebase = true;
extraConfig.init.defaultBranch = "main";
};
lfs.enable = true;
};
}