From 8a62bfebf2b02c2607d9ad62769b6a6667cae57d Mon Sep 17 00:00:00 2001 From: Matthew Salerno Date: Mon, 21 Aug 2023 22:15:57 -0400 Subject: [PATCH] Remove unused file, fix type signatures for additional[Parsers/Configurers/KeyProviders] --- net.nix | 0 wire.nix | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 net.nix diff --git a/net.nix b/net.nix deleted file mode 100644 index e69de29..0000000 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.