From 54844e3558b448319c937cd67cf6cabccd16198e Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 19 Apr 2026 14:25:42 -0400 Subject: [PATCH] fixed ssh --- system/keys/windows/ssh.pub.key | 1 + system/machines/tv/system.nix | 1 + 2 files changed, 2 insertions(+) create mode 100644 system/keys/windows/ssh.pub.key diff --git a/system/keys/windows/ssh.pub.key b/system/keys/windows/ssh.pub.key new file mode 100644 index 0000000..dedd09a --- /dev/null +++ b/system/keys/windows/ssh.pub.key @@ -0,0 +1 @@ +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBamn0zxYt6mwWLrPkDDXTrfe/tdpGCw6DBLiTw5QuxD bryan@ramos.codes diff --git a/system/machines/tv/system.nix b/system/machines/tv/system.nix index 6b03cf4..6052c6a 100644 --- a/system/machines/tv/system.nix +++ b/system/machines/tv/system.nix @@ -17,6 +17,7 @@ extraGroups = [ "wheel" "networkmanager" "video" "audio" "input" ]; openssh.authorizedKeys.keys = [ "${config.machines.keys.desktop.ssh}" + "${config.machines.keys.windows.ssh}" ]; };