nixos/modules/features/git.nix
KnightArtorias 5a27bcf255 It builds
2026-05-20 01:37:16 +00:00

15 lines
256 B
Nix

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