1
Fork 0
satellite/modules/helpers.nix

9 lines
116 B
Nix

{ lib, ... }: {
mergeLines = (lines: lib.lists.foldr
(a: b: ''
${a}
${b}
'') ""
lines);
}