nixos/services.thinkfan: fix undefined variables (#338951)

This commit is contained in:
Philip Taron
2024-09-03 09:18:28 -07:00
committed by GitHub
+1 -1
View File
@@ -12,7 +12,7 @@ let
tuple = ts: lib.mkOptionType {
name = "tuple";
merge = lib.mergeOneOption;
check = xs: lib.all lib.id (zipListsWith (t: x: t.check x) ts xs);
check = xs: lib.all lib.id (lib.zipListsWith (t: x: t.check x) ts xs);
description = "tuple of" + lib.concatMapStrings (t: " (${t.description})") ts;
};
level = ints.unsigned;