dotfiles/common/gitm.nix

18 lines
384 B
Nix

_: {
# enable programs
programs = {
git = {
enable = true;
userName = "beanigen";
userEmail = "beanigit@protonmail.com";
extraConfig = {
commit.gpgsign = true;
gpg.format = "ssh";
user.signingkey = "~/.ssh/id_ed25519.pub";
init.defaultBranch = "master";
};
};
# ... add more programs as you see fit
};
}