flakes/modules/user/git.nix
Cilly Leang 9724f1d731
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
user/git: enable push.autoSetupRemote
2026-06-19 09:55:28 +10:00

17 lines
405 B
Nix

{ ... }: {
programs.git = {
enable = true;
signing = {
key = "059F098EBF0E9A13E10A46BF6500251E087653C9";
signByDefault = true;
};
settings = {
user.name = "Cilly Leang";
user.email = "mini@cilly.moe";
core.abbrev = 11;
safe.directory = "/home/rin/Projects/flakes";
init.defaultBranch = "master";
push.autoSetupRemote = true;
};
};
}