From caa08f1c1823816a9ec4426263bf14259e2d956b Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sat, 4 Jan 2025 17:48:02 -0600 Subject: [PATCH] removed rsa from default hostKeys --- modules/home-manager-modules/openssh.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/home-manager-modules/openssh.nix b/modules/home-manager-modules/openssh.nix index 4710cd9..ae81bd1 100644 --- a/modules/home-manager-modules/openssh.nix +++ b/modules/home-manager-modules/openssh.nix @@ -13,11 +13,6 @@ hostKeys = lib.mkOption { type = lib.types.listOf lib.types.attrs; default = [ - { - type = "rsa"; - bits = 4096; - path = ".ssh/${config.home.username}_${osConfig.networking.hostName}_rsa"; - } { type = "ed25519"; path = ".ssh/${config.home.username}_${osConfig.networking.hostName}_ed25519";