2026-06-29 12:41:16 +01:00
|
|
|
# User identity registry -- pure data, keyed by username. See README "Users".
|
|
|
|
|
# (`identity.username` is injected by mkHost, so it is not repeated here.)
|
2026-06-29 12:27:52 +01:00
|
|
|
{
|
|
|
|
|
lyrathorpe = {
|
|
|
|
|
fullName = "Lyra Thorpe";
|
|
|
|
|
email = "iam@emmathe.dev";
|
|
|
|
|
extraGroups = [
|
|
|
|
|
"wheel"
|
|
|
|
|
"docker"
|
|
|
|
|
];
|
|
|
|
|
sshAuthorizedKeys = [
|
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPDxHvdMTOzpFWUFMtCP7C/4tIOUO3GIO2QPvaifSnWH lyrathorpe@Lyra-MBA"
|
|
|
|
|
];
|
|
|
|
|
signingKey = "key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPDxHvdMTOzpFWUFMtCP7C/4tIOUO3GIO2QPvaifSnWH lyrathorpe@Lyra-MBA";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
emmathorpe = {
|
|
|
|
|
fullName = "Emma Thorpe";
|
|
|
|
|
email = "emma.thorpe@citrix.com";
|
|
|
|
|
extraGroups = [
|
|
|
|
|
"wheel"
|
|
|
|
|
"docker"
|
|
|
|
|
];
|
2026-06-29 12:41:16 +01:00
|
|
|
# No personal key on file yet; add one if SSH login as emmathorpe is wanted.
|
2026-06-29 12:27:52 +01:00
|
|
|
sshAuthorizedKeys = [ ];
|
|
|
|
|
signingKey = "key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAJMVgeRKnfX1G8coU3nAobI485aeUpGTMqH7+zbKI8o emma.thorpe@cloud.com";
|
|
|
|
|
};
|
|
|
|
|
}
|