18 lines
383 B
Nix
18 lines
383 B
Nix
{ core, ... }:
|
|
let
|
|
inherit(core) debug string;
|
|
|
|
collect = _: [];
|
|
prepare
|
|
= environment:
|
|
host:
|
|
about:
|
|
{
|
|
about = string.expect about;
|
|
source = host.source "<About of Host ${host.name}>";
|
|
};
|
|
in
|
|
{
|
|
inherit collect prepare;
|
|
}
|