From 86932861c890c4e509c60713409023718f880ec7 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Thu, 17 Aug 2023 15:42:07 +0200 Subject: [PATCH] fix: fix defaults --- lib/stdlib-extended.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/stdlib-extended.nix b/lib/stdlib-extended.nix index 81e2605d..8ceb44f8 100644 --- a/lib/stdlib-extended.nix +++ b/lib/stdlib-extended.nix @@ -43,7 +43,8 @@ in mkMultipleMappingOption = description: defaults: self.mkOption { type = self.types.nullOr self.types.listOf self.types.str; - inherit defaults description; + default = defaults; + inherit description; }; # Utility function that takes two attrsets: