Add slim7 pubkey for ssh

This commit is contained in:
2025-12-07 18:36:52 -08:00
parent f6387b341f
commit 9191d2c954
3 changed files with 4 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ in
]; ];
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
sshDesktopPubkey sshDesktopPubkey
# sshLaptopPubkey sshLaptopPubkey
]; ];
}; };

View File

@@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKn/grpCtACdsrw1ocTBsf2Mc6hUZHNwvuZPk8K4UJ3p caperren@cap-slim7

View File

@@ -1,6 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let let
sshCaperrenDesktopPubkey = builtins.readFile ../caperren/pubkeys/cap-nr200p.pub; sshCaperrenDesktopPubkey = builtins.readFile ../caperren/pubkeys/cap-nr200p.pub;
sshCaperrenLaptopPubkey = builtins.readFile ../caperren/pubkeys/cap-slim7.pub;
in in
{ {
users.users.cluster-admin = { users.users.cluster-admin = {
@@ -13,6 +14,7 @@ in
]; ];
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
sshCaperrenDesktopPubkey sshCaperrenDesktopPubkey
sshCaperrenLaptopPubkey
]; ];
}; };