fix: properly set git.name/email

This commit is contained in:
punkfairie 2025-05-31 18:53:01 -07:00
parent c7da17b79d
commit f87f6f1546
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -4,11 +4,14 @@
inputs',
...
}: let
my = {
my = rec {
name = "marley";
fullName = "Marley Rae";
username = "punkfairie";
email = "marley@punkfairie.net";
git = {
inherit name email;
};
};
in {
config = {