fix: properly set git.name/email
This commit is contained in:
parent
c7da17b79d
commit
f87f6f1546
1 changed files with 4 additions and 1 deletions
|
@ -4,11 +4,14 @@
|
||||||
inputs',
|
inputs',
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
my = {
|
my = rec {
|
||||||
name = "marley";
|
name = "marley";
|
||||||
fullName = "Marley Rae";
|
fullName = "Marley Rae";
|
||||||
username = "punkfairie";
|
username = "punkfairie";
|
||||||
email = "marley@punkfairie.net";
|
email = "marley@punkfairie.net";
|
||||||
|
git = {
|
||||||
|
inherit name email;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
config = {
|
config = {
|
||||||
|
|
Loading…
Reference in a new issue