summary refs log tree commit diff
path: root/nixos/modules/services/networking/freeradius.nix
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 /nixos/modules/services/networking/freeradius.nix
parent0587329191ace2463c2880006baebbb3889d07bc (diff)
downloadnixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.tar
nixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.tar.gz
nixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.tar.bz2
nixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.tar.lz
nixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.tar.xz
nixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.tar.zst
nixpkgs-065716ab9517747ec760bd0193553ab8453cc53b.zip
nixos/freeradius: depend on network.target, not online
Diffstat (limited to 'nixos/modules/services/networking/freeradius.nix')
-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 3a94c680710..f3fdd576b65 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
     '';