git fixes

This commit is contained in:
John Lancaster
2025-11-04 22:24:12 -06:00
parent 34eaffdd65
commit af26a2db8b

View File

@@ -10,12 +10,12 @@
}; };
} }
(lib.mkIf (config.profile == "personal") { (lib.mkIf (config.profile == "personal") {
user.name = "John Lancaster"; settings.user.name = "John Lancaster";
user.email = "32917998+jsl12@users.noreply.github.com"; settings.user.email = "32917998+jsl12@users.noreply.github.com";
}) })
(lib.mkIf (config.profile == "work") { (lib.mkIf (config.profile == "work") {
userName = "John Lancaster"; settings.user.name = "John Lancaster";
userEmail = "john.lancaster@crowncastle.com"; settings.user.email = "john.lancaster@crowncastle.com";
}) })
]; ];
} }