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