nixos-demo/users/root/home/git.nix
2025-07-12 23:16:15 +02:00

19 lines
304 B
Nix

{ ... }:
{
programs.git = {
enable = true;
userName = "root";
userEmail = "root@localhost";
signing.format = "ssh";
extraConfig = {
init.defaultBranch = "main";
core = {
preloadindex = true;
fscache = true;
};
gc.auto = 256;
};
};
}