nix/users/gandalf/modules/git.nix

12 lines
239 B
Nix

{ ... }: {
programs.git = {
enable = true;
lfs.enable = true;
signing = {
signByDefault = true;
key = "732A612DAD28067D";
};
userEmail = "jacob.bachmann@posteo.de";
userName = "Jacob Bachmann";
};
}