initial commit

This commit is contained in:
2026-02-22 20:22:28 -05:00
commit de4c297252
8 changed files with 202 additions and 0 deletions

5
users/users.nix Normal file
View File

@@ -0,0 +1,5 @@
{
imports = [
./williamp.nix
];
}

9
users/williamp.nix Normal file
View File

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