From 0e0a9646f1562e9a9d3c3667a94f4e119e024075 Mon Sep 17 00:00:00 2001 From: Matthijs Steen Date: Fri, 8 Mar 2024 13:30:07 +0100 Subject: [PATCH] fix: incorrect type for nixos modules --- nixcfg/mkModule.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixcfg/mkModule.nix b/nixcfg/mkModule.nix index 7c2955b..8196ca3 100644 --- a/nixcfg/mkModule.nix +++ b/nixcfg/mkModule.nix @@ -310,7 +310,7 @@ name, }: lib.nameValuePair name (mkOption { - type = types.attrsOf types.path; + type = types.attrs; default = { }; description = '' The set of ${type} ${kind} made available in ${type} configurations.