Add postgresql dep to most stuff that needs it

This commit is contained in:
Natsu Kagami 2023-09-17 12:56:31 +02:00
parent 5aaf1f044d
commit 1168c85ecf
Signed by: nki
GPG key ID: 55A032EB38B49ADB
9 changed files with 12 additions and 3 deletions

View file

@ -42,7 +42,8 @@ in
systemd.services.miniflux = {
description = "Miniflux service";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" "postgresql.service" ];
after = [ "network.target" ];
requires = [ "postgresql.service" ];
serviceConfig = {
ExecStart = "${package}/bin/miniflux";