about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2020-02-27 18:25:43 +0100
committerLinus Heckemann <git@sphalerite.org>2020-03-10 15:54:29 +0100
commit065716ab9517747ec760bd0193553ab8453cc53b (patch)
tree8ac6a7521eb86fcbbf3dcd8d2be4dd811484322e
parent0587329191ace2463c2880006baebbb3889d07bc (diff)
downloadnixlib-065716ab9517747ec760bd0193553ab8453cc53b.tar
nixlib-065716ab9517747ec760bd0193553ab8453cc53b.tar.gz
nixlib-065716ab9517747ec760bd0193553ab8453cc53b.tar.bz2
nixlib-065716ab9517747ec760bd0193553ab8453cc53b.tar.lz
nixlib-065716ab9517747ec760bd0193553ab8453cc53b.tar.xz
nixlib-065716ab9517747ec760bd0193553ab8453cc53b.tar.zst
nixlib-065716ab9517747ec760bd0193553ab8453cc53b.zip
nixos/freeradius: depend on network.target, not online
-rw-r--r--nixos/modules/services/networking/freeradius.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/freeradius.nix b/nixos/modules/services/networking/freeradius.nix
index 3a94c6807107..f3fdd576b65c 100644
--- a/nixos/modules/services/networking/freeradius.nix
+++ b/nixos/modules/services/networking/freeradius.nix
@@ -10,8 +10,8 @@ let
   {
     description = "FreeRadius server";
     wantedBy = ["multi-user.target"];
-    after = ["network-online.target"];
-    wants = ["network-online.target"];
+    after = ["network.target"];
+    wants = ["network.target"];
     preStart = ''
       ${pkgs.freeradius}/bin/radiusd -C -d ${cfg.configDir} -l stdout
     '';