Unverified Commit 1f34eeb6 authored by Felix Bühler's avatar Felix Bühler Committed by GitHub
Browse files

nixos/services.thinkfan: fix `all` & `id` (#339084)

parents abbba619 0646a077
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;