summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-07-03 17:34:07 +0200
committerGitHub <noreply@github.com>2018-07-03 17:34:07 +0200
commitbdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6 (patch)
tree7b0a517114ac57b472cc720c2eedd4b6378b041e /nixos/modules
parent59dd0e6c697d06bb6164a013374b21fc9d9b5c70 (diff)
parent16a46139d30ec7e6c1ea93db819e52b3d12988d0 (diff)
downloadnixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.tar
nixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.tar.gz
nixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.tar.bz2
nixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.tar.lz
nixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.tar.xz
nixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.tar.zst
nixpkgs-bdac6ac4b2e6294ba2c79bf00a77b89e71ec14a6.zip
Merge pull request #42860 from ldesgoui/fix-murmur-service
murmur service: prevent silent launch failure by waiting until network is available
Diffstat (limited to 'nixos/modules')
-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 5cd26b31533..fcc813e6898 100644
--- a/nixos/modules/services/networking/murmur.nix
+++ b/nixos/modules/services/networking/murmur.nix
@@ -248,7 +248,7 @@ in
     systemd.services.murmur = {
       description = "Murmur Chat Service";
       wantedBy    = [ "multi-user.target" ];
-      after       = [ "network.target "];
+      after       = [ "network-online.target "];
 
       serviceConfig = {
         Type      = "forking";