infrastructure/home/shell/git.nix

13 lines
307 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{...}: {
programs.git = {
enable = true;
lfs.enable = true;
userName = "Laureηt";
userEmail = "laurent@fainsin.bzh";
signing = {
signByDefault = true;
2024-01-12 16:02:47 +00:00
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINTvwXCT99s1EwOCeGQ28jyCAH/RBoLZza9k5I7wWdEu laurent@silicium";
};
};
}