From 36c81c7fa8d5db60884c3d0b9b25b5cd0ee1e4b0 Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Sun, 8 Feb 2026 16:21:16 +0100 Subject: [PATCH] fix: it is str not string --- options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.nix b/options.nix index fa1d7b9..9a3c745 100644 --- a/options.nix +++ b/options.nix @@ -6,7 +6,7 @@ { options.kekleo = with lib.types; { publicKeys = lib.mkOption { - type = listOf string; + type = listOf str; default = [ ]; description = "List of public keys to use for ssh login, secret encryption, etc."; };