Add pubkeys for ssh on caperren and cluster admin from caperren account

This commit is contained in:
2025-12-07 16:58:02 -08:00
parent e717edc177
commit 4fe3ce49e6
4 changed files with 13 additions and 0 deletions

View File

@@ -1,4 +1,7 @@
{ config, pkgs, ... }:
let
sshCaperrenDesktopPubkey = builtins.readFile ../caperren/pubkeys/cap-nr200p.pub;
in
{
users.users.cluster-admin = {
initialPassword = "changeme";
@@ -8,6 +11,9 @@
"networkmanager"
"wheel"
];
openssh.authorizedKeys.keys = [
sshCaperrenDesktopPubkey
];
};
home-manager.users.cluster-admin = {