Revert removal of types.anything, that broke mkIf

This commit is contained in:
Pedro Alves 2021-02-10 14:20:36 +00:00
parent 8747a8576b
commit 657e5e6efb
3 changed files with 23 additions and 3 deletions

View file

@ -116,18 +116,18 @@ in
};
configure = mkOption {
type = types.attrs;
type = types.attrsOf types.anything;
default = { };
};
options = mkOption {
type = types.attrs;
type = types.attrsOf types.anything;
default = { };
description = "The configuration options, e.g. line numbers";
};
globals = mkOption {
type = types.attrs;
type = types.attrsOf types.anything;
default = { };
description = "Global variables";
};