Skip to content

Commit

Permalink
nixos/services.thinkfan: fix all & id (#339084)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stunkymonkey authored Sep 2, 2024
2 parents abbba61 + 0646a07 commit 1f34eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/hardware/thinkfan.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1f34eeb

Please sign in to comment.