nixos/modules/features/git.nix
2026-05-19 22:25:43 +00:00

15 lines
258 B
Nix

{
flake.nixosModules.git = {
programs.git = {
enable = true;
settings = {
user = {
name = "KnightArtorias";
email = "booksandpi@gmail.com";
};
init.defaultBranch = "main";
};
};
};
}