feat: add hyp-01

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-11-01 10:39:18 +01:00
parent 95cbbfb157
commit a55ed8b41b
Signed by: lander
GPG key ID: 0142722B4B0C536F
8 changed files with 306 additions and 1 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
let
sshKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPnthKtz0fE4yQ/X10cJgKVCjYCNkRNoqV28xAhD7h2M cardno:22_498_026";
in
{
users.mutableUsers = false;
users.users.root = {
openssh.authorizedKeys.keys = [ sshKey ];
};
users.users.lander = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
];
openssh.authorizedKeys.keys = [ sshKey ];
};
}