1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-07 01:21:03 +01:00

treewide: fold -> foldr

deprecated in f4d36941eb
This commit is contained in:
zowoq 2025-11-26 19:48:27 +10:00 committed by Austin Horstman
parent f4cb25928f
commit ceb884e4f3
5 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ let
let
f = w: x: builtins.trace "warning: ${w}" x;
in
lib.fold f res res.config.warnings;
lib.foldr f res res.config.warnings;
extendedLib = import ./lib/stdlib-extended.nix lib;