From 7721c9d3a218dc60440bf01f05a4f548349e6d66 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 23 Apr 2026 20:23:37 -0400 Subject: [PATCH] ssh: remove desktop key --- services/ssh.nix | 1 - site-config.nix | 1 - 2 files changed, 2 deletions(-) diff --git a/services/ssh.nix b/services/ssh.nix index 7aecb47..c9e4242 100644 --- a/services/ssh.nix +++ b/services/ssh.nix @@ -27,7 +27,6 @@ users.users.${username}.openssh.authorizedKeys.keys = [ site_config.ssh_keys.laptop - site_config.ssh_keys.desktop ]; # used for deploying configs to server diff --git a/site-config.nix b/site-config.nix index 5c3ee31..7382c6a 100644 --- a/site-config.nix +++ b/site-config.nix @@ -57,7 +57,6 @@ rec { # hosts/yarn/default.nix. Rotating a key means changing it here, nowhere else. ssh_keys = { laptop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4jL6gYOunUlUtPvGdML0cpbKSsPNqQ1jit4E7U1RyH"; - desktop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBJjT5QZ3zRDb+V6Em20EYpSEgPW5e/U+06uQGJdraxi"; ci_deploy = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC5ZYN6idL/w/mUIfPOH1i+Q/SQXuzAMQUEuWpipx1Pc ci-deploy@muffin"; }; }