From b9d9af01e277036f7c7bc5e3ac1090f3d77dfb17 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Mon, 29 Nov 2021 22:17:37 +0300 Subject: [PATCH] Fix wrong type of admin ssh keys --- variables-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables-module.nix b/variables-module.nix index 0f347a7..2c465cc 100644 --- a/variables-module.nix +++ b/variables-module.nix @@ -64,7 +64,7 @@ in description = '' SSH keys of the user that was defined at the initial setup process ''; - type = types.nullOr types.str; + type = types.nullOr (types.listOf types.str); default = [ ]; }; ###############