From c7da7a5a8087c6dc9fcc935a6fc84f275ce5bb28 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 18 Jan 2023 17:12:40 -0500 Subject: [PATCH] fix(soft-serve): correct start script --- modules/functionality/soft-serve.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/functionality/soft-serve.nix b/modules/functionality/soft-serve.nix index edc045d..35df04d 100644 --- a/modules/functionality/soft-serve.nix +++ b/modules/functionality/soft-serve.nix @@ -29,7 +29,7 @@ in SOFT_SERVE_REPO_PATH = cfg.repo_path; SOFT_SERVE_INITIAL_ADMIN_KEY = cfg.initial_admin_key; }; - script = "${pkgs.soft-serve}/bin/soft"; + script = "${pkgs.soft-serve}/bin/soft serve"; serviceConfig.Type = "exec"; };