nix/programm_configs/git.nix

11 lines
No EOL
185 B
Nix

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