shell-customization #4

Open
lbailly wants to merge 61 commits from shell-customization into main
Showing only changes of commit ffc6492365 - Show all commits

View file

@ -9,5 +9,8 @@ let
in longrun {
# Long term: make it unique so that user can spawn multiple buses if they want.
name = "ubus";
run = "${package}/bin/ubusd";
run = ''
mkdir -p /run/ubus
${package}/bin/ubusd -s /run/ubus/ubus.sock
'';
}