nix/programm_configs/git.nix
2024-04-18 10:04:03 +02:00

11 lines
No EOL
223 B
Nix

{pkgs, ...}: {
programs.git = {
enable = true;
userName = "CDaut";
userEmail = "git@cdaut.de";
signing = {
signByDefault = true;
key = "58EF8D71114EF548DEE3320DE6F04916B6EEBD83";
};
};
}