19 lines
303 B
Nix
19 lines
303 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.git =
|
|
{ ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
signing.format = "ssh";
|
|
ignores = [
|
|
".claude/"
|
|
".codex/"
|
|
];
|
|
settings = {
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
}
|