From b97760e456dc471e33bab3844ab9d3dbd5cc5a73 Mon Sep 17 00:00:00 2001 From: Matthew Salerno Date: Mon, 21 Aug 2023 21:59:30 -0400 Subject: [PATCH] fixup additional_ settings --- wire.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wire.nix b/wire.nix index bd62db1..1143d74 100644 --- a/wire.nix +++ b/wire.nix @@ -66,7 +66,7 @@ in }; additionalKeyProviders = mkOption { default = {}; - type = with types; attrsOf (functionTo attrs); + type = with types; unspecified; description = mdDoc '' Additional key providers to load, with their names being used to select them in the `keyProviders` option @@ -74,7 +74,7 @@ in }; additionalParsers = mkOption { default = {}; - type = with types; attrsOf (functionTo attrs); + type = with types; unspecified; description = mdDoc '' Additional parsers to load, with their names being used to compare to the acl's "version" field. @@ -82,7 +82,7 @@ in }; additionalConfigurers = mkOption { default = {}; - type = with types; attrsOf (functionTo attrs); + type = with types; unspecified; description = mdDoc '' Additional configurers to load, with their names being used to select them in the `configurer` option.