1
Fork 0
satellite/modules/helpers.nix
2022-03-10 21:59:18 +02:00

9 lines
110 B
Nix

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