nixos/modules/features/git.nix
2026-05-22 22:21:10 +00:00

16 lines
281 B
Nix

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