fix: incorrect subcommand in ExecStart

This commit is contained in:
Guz
2025-04-01 08:45:18 -03:00
parent 93ffd06ab5
commit 86296aa1e8

View File

@@ -104,7 +104,7 @@
Type = "simple";
User = cfg.user;
Group = cfg.group;
ExecStart = "${lib.escapeShellArg (lib.getExe cfg.package)} web -port ${toString cfg.port}";
ExecStart = "${lib.escapeShellArg (lib.getExe cfg.package)} -port ${toString cfg.port}";
Restart = "on-success";
};
};