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

authored by philiptaron.tngl.sh and committed by GitHub 7f1830f1 3c82d2b9

+1 -1
+1 -1
nixos/modules/services/hardware/thinkfan.nix
··· 12 12 tuple = ts: lib.mkOptionType { 13 13 name = "tuple"; 14 14 merge = lib.mergeOneOption; 15 - check = xs: lib.all lib.id (zipListsWith (t: x: t.check x) ts xs); 15 + check = xs: lib.all lib.id (lib.zipListsWith (t: x: t.check x) ts xs); 16 16 description = "tuple of" + lib.concatMapStrings (t: " (${t.description})") ts; 17 17 }; 18 18 level = ints.unsigned;