nixos-config/modules/shell/git.nix

19 lines
270 B
Nix
Raw Normal View History

2022-09-17 16:50:50 +02:00
#
# Git
#
{
programs = {
git = {
enable = true;
userName = "Kabbone";
userEmail = "tobias@opel-online.de";
2022-10-09 14:52:39 +02:00
lfs.enable = true;
signing = {
key = ~/.ssh/id_ed25519_sk_yubi_C;
signByDefault = true;
}
2022-09-17 16:50:50 +02:00
};
};
}