27 lines
350 B
Nix
27 lines
350 B
Nix
{ ...
|
|
}:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
user = {
|
|
name = "dokkae.cat";
|
|
email = "finnliry@gmail.com";
|
|
};
|
|
|
|
init.defaultBranch = "main";
|
|
safe.directory = "/etc/nixos";
|
|
};
|
|
|
|
ignores = [
|
|
".idea/"
|
|
".helix/"
|
|
".direnv/"
|
|
|
|
".envrc"
|
|
".ignore"
|
|
];
|
|
};
|
|
}
|