From acea54b3c6e9193ce51aa43c5d4ad4f232a62047 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 25 Feb 2012 17:31:39 +0000 Subject: [PATCH] * In the users...keyFiles option, the "string" type doesn't work very well because elements could be paths, e.g. users.extraUsers.root.openssh.authorizedKeys.keyFiles = [ ./id_key.pub ]; So disable the type check for now. svn path=/nixos/trunk/; revision=32558 --- modules/services/networking/ssh/sshd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/networking/ssh/sshd.nix b/modules/services/networking/ssh/sshd.nix index 9e18133595b..0188293a08c 100644 --- a/modules/services/networking/ssh/sshd.nix +++ b/modules/services/networking/ssh/sshd.nix @@ -57,7 +57,7 @@ let }; keyFiles = mkOption { - type = types.listOf types.string; + #type = types.listOf types.string; default = []; description = '' A list of files each containing one OpenSSH public keys that should be