16 lines
281 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|