From 6867e12f830c74e283296753b3718ac5ca66d91d Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Tue, 30 Apr 2024 08:13:43 -0500 Subject: [PATCH] Correct package name. --- nixos/telperion/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/telperion/configuration.nix b/nixos/telperion/configuration.nix index f6c6a43..755500a 100644 --- a/nixos/telperion/configuration.nix +++ b/nixos/telperion/configuration.nix @@ -81,8 +81,10 @@ wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; serviceConfig = { - ExecStart = "${pkgs.matchbox}/bin/matchbox -address=0.0.0.0:8080 -data-path=/srv/matchbox -assets-path=/srv/matchbox/assets -log-level=debug"; + ExecStart = "${pkgs.matchbox-server}/bin/matchbox -address=0.0.0.0:8080 -data-path=/srv/matchbox -assets-path=/srv/matchbox/assets -log-level=debug"; Restart = "on-failure"; + User = "matchbox"; + Group = "matchbox"; }; };