nvf/lib/build.nix

15 lines
246 B
Nix

{
# TODO: give those section indicators
# maybe using mkSection?
wrapLuaConfig = {
luaConfigBefore,
luaConfig,
luaConfigAfter,
}: ''
lua << EOF
${luaConfigBefore}
${luaConfig}
${luaConfigAfter}
EOF
'';
}