From b1ea3b4acf85365fd76c890f8b8852b5f95be5c1 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 28 Mar 2026 16:43:02 +0900 Subject: cmd/hakurei: rename app to run The run command was a legacy holdover from very early days and is only useful for testing and demonstration these days. This change also renames it to exec. Signed-off-by: Ophestra --- nixos.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos.nix') diff --git a/nixos.nix b/nixos.nix index 15ec5287..5b60aea4 100644 --- a/nixos.nix +++ b/nixos.nix @@ -265,7 +265,7 @@ in ''; in pkgs.writeShellScriptBin app.name '' - exec hakurei${if app.verbose then " -v" else ""} app ${checkedConfig "hakurei-app-${app.name}.json" conf} $@ + exec hakurei${if app.verbose then " -v" else ""} run ${checkedConfig "hakurei-app-${app.name}.json" conf} $@ '' ) ] -- cgit v1.3.1