Commit 0646a077 authored by Felix Buehler's avatar Felix Buehler
Browse files

nixos/services.thinkfan: fix `all` & `id`

parent cb6c5083
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ let
      tuple = ts: lib.mkOptionType {
        name = "tuple";
        merge = lib.mergeOneOption;
        check = xs: all id (zipListsWith (t: x: t.check x) ts xs);
        check = xs: lib.all lib.id (zipListsWith (t: x: t.check x) ts xs);
        description = "tuple of" + lib.concatMapStrings (t: " (${t.description})") ts;
      };
      level = ints.unsigned;