c24c659ee1
Some checks failed
build liminix / build_vm_qemu_mips (push) Failing after 27s
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
13 lines
235 B
Nix
13 lines
235 B
Nix
{
|
|
liminix
|
|
, writeText
|
|
, lib
|
|
}:
|
|
{ package } :
|
|
let
|
|
inherit (liminix.services) longrun;
|
|
in longrun {
|
|
# Long term: make it unique so that user can spawn multiple buses if they want.
|
|
name = "ubus";
|
|
run = "${package}/bin/ubusd";
|
|
}
|