Skip to content

Commit

Permalink
build.flake: run service after network.online-target, bump version
Browse files Browse the repository at this point in the history
Relevant issue can be found here:
https://codeberg.org/tlkg/infrastructure/issues/7

Resolves #87

Decided to use a simpler versioning style.
  • Loading branch information
furkansimsekli committed Dec 6, 2024
1 parent 0f4b0e3 commit 547fcec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

hu-announcement-bot = pkgs.stdenv.mkDerivation {
pname = "hu-announcement-bot";
version = "3.8.1";
version = "3.9";
src = ./.;

buildInputs = with pkgs; [
Expand Down Expand Up @@ -178,7 +178,7 @@
systemd.services.hu-announcement-bot = {
enable = true;
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
after = [ "network-online.target" ];
startLimitBurst = 3;
startLimitIntervalSec = 60;

Expand Down

0 comments on commit 547fcec

Please sign in to comment.