nixos-config/profiles/workspace/git.nix

14 lines
334 B
Nix
Raw Normal View History

2021-01-21 22:13:53 +04:00
{
home-manager.users.balsoft.programs.git = {
enable = true;
userEmail = "balsoft@balsoft.ru";
userName = "Alexander Bantyev";
extraConfig.pull.rebase = true;
2021-06-09 00:07:38 +04:00
ignores = [ ".envrc" ".direnv" "*~" ];
2021-01-21 22:13:53 +04:00
signing = {
signByDefault = true;
key = "687558B21E04FE92B255BED0E081FF12ADCB4AD5";
};
};
}