Files
black-start/users/williamp.nix
2026-02-22 20:22:28 -05:00

9 lines
244 B
Nix

{
users.users.williamp = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID5lZ0/JJyLLwSrFfSs+DF/v0EkV2i/SVDf18+/K5NDV me@williamtpeebles.com"
];
extraGroups = ["wheel"];
};
}