nixos-config/profiles/workspace/git.nix

14 lines
346 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;
2022-01-26 15:51:21 +04:00
ignores = [ ".envrc" ".direnv" "*~" ".#*" "#*#" ];
2021-01-21 22:13:53 +04:00
signing = {
signByDefault = true;
key = "687558B21E04FE92B255BED0E081FF12ADCB4AD5";
};
};
}