From 3161819c57e393ecdcd0a4d74c1c90ff4dfafca7 Mon Sep 17 00:00:00 2001 From: technofab Date: Fri, 26 Jan 2024 15:13:17 +0100 Subject: [PATCH] fix: rules are a list of attrs --- flakeModule.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flakeModule.nix b/flakeModule.nix index e56d25c..a408955 100644 --- a/flakeModule.nix +++ b/flakeModule.nix @@ -89,7 +89,7 @@ default = null; }; rules = mkOption { - type = types.nullOr types.attrs; + type = types.nullOr (types.listOf types.attrs); default = null; }; };