server: install rocksky as system package wrapper

This commit is contained in:
2026-02-24 21:22:33 +02:00
parent d02b8776aa
commit debd90e1c3
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs }:
pkgs.writeShellApplication {
name = "rocksky";
runtimeInputs = [ pkgs.bun ];
text = ''
exec ${pkgs.bun}/bin/bun x @rocksky/cli "$@"
'';
}