From f0d148ea75428bc4bf56b909df95891219801625 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 21 Apr 2024 18:59:33 -0400 Subject: [PATCH] users/root: remove unnecessary ssh match block --- users/root/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/users/root/default.nix b/users/root/default.nix index 780317c..7aee8e9 100644 --- a/users/root/default.nix +++ b/users/root/default.nix @@ -3,12 +3,4 @@ hashedPasswordFile = lib.mkIf config.modules.secrets.enable config.secrets.root-password; openssh.authorizedKeys.keys = import ./ssh-keys.nix; }; - - home-manager.users.root = { ... }: { - programs.ssh.matchBlocks = { - "server.doge-inc.net" = { - identityFile = "/root/.ssh/id_25519"; - }; - }; - }; }