From c490e4c59cb485d29ed2ed4b61782d08970450a9 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 8 Feb 2021 20:01:20 +0000 Subject: [PATCH] Improve compatibility --- nixvim.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixvim.nix b/nixvim.nix index 5e3cc823..33d961fa 100644 --- a/nixvim.nix +++ b/nixvim.nix @@ -116,18 +116,18 @@ in }; configure = mkOption { - type = types.attrsOf types.anything; + type = types.attrs; default = { }; }; options = mkOption { - type = types.attrsOf types.anything; + type = types.attrs; default = { }; description = "The configuration options, e.g. line numbers"; }; globals = mkOption { - type = types.attrsOf types.anything; + type = types.attrs; default = { }; description = "Global variables"; };