Add juan user pubkey
All checks were successful
Flake check / check (push) Successful in 13m13s
Update `flake.lock` / update_lockfile (push) Successful in 11m35s

This commit is contained in:
Pedro Rey Anca 2025-08-29 16:43:51 +02:00
parent b614dcf1ec
commit feba5d2ae8
Signed by: peprolinbot
GPG key ID: 053EA6E00116533A
2 changed files with 9 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./modules/dyndns.nix
./modules/network.nix
./modules/wireguard.nix
./modules/users.nix
];
services.logind.lidSwitch = "ignore";

View file

@ -0,0 +1,8 @@
{...}: {
users.users.juan = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFpkZoYCFS6jQyaLgRkG8WlOj8ybpwsJkCWTuKkGB5oA Juan Rey"
];
};
}