Skip to content

Commit

Permalink
fix: use ExecStart instead of script for genealogos module
Browse files Browse the repository at this point in the history
Co-authored-by: Théophane Hufschmitt <[email protected]>
  • Loading branch information
Erin van der Veen and thufschmitt authored Apr 12, 2024
1 parent b4cbf53 commit d5a13fb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions nix/genealogos-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ in
path = [ cfg.package ];
wantedBy = [ "multi-user.target" ];

script = ''
${cfg.package}/bin/genealogos-api
'';
ServiceConfig.ExecStart = [ "@genealogos-api" "${cfg.package}/bin/genealogos-api" ];
};
};
}

0 comments on commit d5a13fb

Please sign in to comment.