feat(user): switch primary identity to lyrathorpe / Lyra Thorpe

Thread username and fullName per host through the flake host table and specialArgs / home-manager.extraSpecialArgs, so user.nix and git.nix derive identity instead of hardcoding it.

MBP and X1 now provision user lyrathorpe (Lyra Thorpe). EDaaS retains emmathorpe (Emma Thorpe) and its wsl.defaultUser; work commit email is unchanged.
This commit is contained in:
Emma Thorpe
2026-06-02 14:58:26 +00:00
parent 74792f9e5b
commit 5b6fae13fb
3 changed files with 47 additions and 31 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
# Version control: git + delta pager + commitizen. The work host layers
# commit signing and an email override on top (see work/default.nix).
{ pkgs, ... }:
{ pkgs, fullName, ... }:
{
home.packages = [
pkgs.commitizen
@@ -10,7 +10,7 @@
enable = true;
package = pkgs.gitFull;
settings = {
user.name = "Emma Thorpe";
user.name = fullName;
push = {
autoSetupRemote = true;
};