nix-config/home/toast/programs/git.nix
2025-08-02 22:51:40 +09:00

10 lines
178 B
Nix

{
programs.git = {
enable = true;
userName = "lightly-toasted";
userEmail = "tooast@duck.com";
extraConfig = {
init.defaultBranch = "main";
};
};
}