liminix/modules/ubus/service.nix
Raito Bezarius c24c659ee1
Some checks failed
build liminix / build_vm_qemu_mips (push) Failing after 27s
modules/ubus: init
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
2024-09-04 16:08:56 +02:00

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";
}