add timedout

This commit is contained in:
Henry Hiles 2026-07-27 21:20:14 -04:00
commit 90a4088e27
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ config, ... }: {
users.users.timedout = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILf4WiyLVNQeCdAB/o8WjV8yH0tw+227gbLbpzNSbVzU nex@pc.timedout.uk"
];
hashedPasswordFile = config.age.secrets."timedoutPassword.age".path;
description = "Nex";
extraGroups = [ "wheel" ];
};
}