Split rest of home-manager config

This commit is contained in:
Marko Korhonen 2024-09-21 15:01:55 +03:00
parent b7e2ecbd46
commit e1edfe1edc
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
12 changed files with 344 additions and 291 deletions

View file

@ -0,0 +1,26 @@
{ ... }:
{
programs.git = {
enable = true;
userName = "Marko Korhonen";
userEmail = "marko@korhonen.cc";
extraConfig = {
user.signingkey = "F2B9F713E7ED627336DD85E444FA3F28CD931BB0";
commit = {
gpgsign = true;
signoff = true;
};
tag = {
gpgsign = true;
signoff = true;
};
merge = {
prompt = false;
conflictstyle = "diff3";
tool = "nvim";
};
};
};
}