Files
dart/modules/home/git.nix
2026-02-16 15:18:42 -07:00

17 lines
304 B
Nix

{ ... }:
{
programs.git = {
enable = true;
userName = "Atridad Lahiji";
userEmail = "me@atri.dad";
signing = {
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILKb+pDgkHEKI7LDWvZbhoLJ11uJMaCmVyAqotDxNOI7 me@atri.dad";
signByDefault = true;
format = "ssh";
};
};
}