nixos-config/profiles/workspace/git.nix

14 lines
370 B
Nix
Raw Permalink 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-05-25 11:18:01 +04:00
ignores = [ ".envrc" ".direnv" ".shell.nix" ".balsoft" "*~" ".#*" "#*#" ];
2021-01-21 22:13:53 +04:00
signing = {
signByDefault = true;
key = "687558B21E04FE92B255BED0E081FF12ADCB4AD5";
};
};
}