From 444a4fb793c67243512a7f17c287e5665a8e2a68 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 1 Nov 2013 00:34:31 +0100 Subject: [PATCH] Loosen the type of SSH key files --- nixos/modules/services/networking/ssh/sshd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix index 48eddb3b2f60..7a2335847e3a 100644 --- a/nixos/modules/services/networking/ssh/sshd.nix +++ b/nixos/modules/services/networking/ssh/sshd.nix @@ -39,7 +39,7 @@ let }; keyFiles = mkOption { - type = types.listOf types.str; + type = types.listOf types.unspecified; default = []; description = '' A list of files each containing one OpenSSH public key that should be @@ -172,7 +172,7 @@ in }; authorizedKeysFiles = mkOption { - type = types.listOf types.str; + type = types.listOf types.unspecified; default = []; description = "Files from with authorized keys are read."; };