fix(jellyfin-rpc): systemd unit dependencies
All checks were successful
build / build (push) Successful in 2m44s

This commit was merged in pull request #20.
This commit is contained in:
2026-03-28 10:09:50 -06:00
committed by Madeleine Sydney Slaga
parent 8c41e3b8df
commit 9ffa14e536

View File

@@ -77,7 +77,9 @@ in {
};
systemd.user.services.jellyfin-rpc = {
Unit.Requires = [ "jellyfin-rpc-configure.service" ];
Unit.After = [ "jellyfin-rpc-configure.service" ];
Install.WantedBy = [ "default.target" ];
Service.ExecStart = lib.getExe pkgs.jellyfin-rpc;
};