1
Fork 0
nixos-system-config/modules/packages/git.nix
caem af0078d7af
Refactor configuration to be more modular.
TODO: Update the documentation in the README to reflect changes
2024-08-26 15:01:33 +02:00

21 lines
342 B
Nix

{ ... }:
{
home-manager.users.hu = {
programs.git = {
enable = true;
userName = "caem";
userEmail = "me@caem.dev";
signing = {
key = "E50FC66B5062070DC462661C69A830D03203405F";
signByDefault = true;
};
extraConfig = {
init.defaultBranch = "master";
};
};
};
}