Skip to content

Commit

Permalink
Fix nix module service
Browse files Browse the repository at this point in the history
  • Loading branch information
Brawl345 committed Nov 17, 2024
1 parent 166b389 commit 2d661e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ in

systemd.services.rssbot = {
description = "RSS Bot for Telegram";
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" "mysql.service" ];
requires = [ "network-online.target" "mysql.service" ];
wantedBy = [ "multi-user.target" ];

script = ''
Expand Down

0 comments on commit 2d661e1

Please sign in to comment.