mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-19 18:25:11 +02:00
Revert removal of types.anything, that broke mkIf
This commit is contained in:
parent
8747a8576b
commit
657e5e6efb
3 changed files with 23 additions and 3 deletions
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue