summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/murmur.nix
diff options
context:
space:
mode:
authorLin Jian <me@linj.tech>2023-05-28 21:03:40 +0800
committerLin Jian <me@linj.tech>2023-05-28 21:03:40 +0800
commit0ae9df6c5e5ac796c6b70e969586b028a31d1ed1 (patch)
treed6e35cc46a420686122c3163879da3ba120d62d8 /nixos/modules/services/networking/murmur.nix
parent548be9d79de4d6874258194244a4892c6a1b1680 (diff)
nixos/murmur: make it be after network.target again
network.target was changed to network-online.target in this PR[1] to workaround an issue[2]. The murmur version in Nixpkgs has fixed that issue[2]. [1]: https://github.com/NixOS/nixpkgs/pull/42860 [2]: https://github.com/mumble-voip/mumble/issues/1629
Diffstat (limited to 'nixos/modules/services/networking/murmur.nix')
-rw-r--r--nixos/modules/services/networking/murmur.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/murmur.nix b/nixos/modules/services/networking/murmur.nix
index 9ec4f57ca43e..ebade7aa8e40 100644
--- a/nixos/modules/services/networking/murmur.nix
+++ b/nixos/modules/services/networking/murmur.nix
@@ -313,7 +313,7 @@ in
systemd.services.murmur = {
description = "Murmur Chat Service";
wantedBy = [ "multi-user.target" ];
- after = [ "network-online.target" ];
+ after = [ "network.target" ];
preStart = ''
${pkgs.envsubst}/bin/envsubst \
-o /run/murmur/murmurd.ini \