summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorAlexander Ried <ried@mytum.de>2016-05-31 16:46:35 +0200
committerAlexander Ried <ried@mytum.de>2016-09-05 15:03:35 +0200
commit2fd6b36c51babbf72cd459cef3a5b76914065eec (patch)
treeaf55ea21be62d719591c4b7497f2ee89fd2ae2ab /nixos/modules/system
parent992c514a20cf2da897db68169d7dcab721e8c7b7 (diff)
downloadnixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.tar
nixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.tar.gz
nixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.tar.bz2
nixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.tar.lz
nixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.tar.xz
nixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.tar.zst
nixlib-2fd6b36c51babbf72cd459cef3a5b76914065eec.zip
networkd.module: remove before network-online
this is already upstream default
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/networkd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix
index ab7485500261..b79683660c5d 100644
--- a/nixos/modules/system/boot/networkd.nix
+++ b/nixos/modules/system/boot/networkd.nix
@@ -677,7 +677,7 @@ in
     };
 
     systemd.services.systemd-networkd-wait-online = {
-      before = [ "network-online.target" "ip-up.target" ];
+      before = [ "ip-up.target" ];
       wantedBy = [ "network-online.target" "ip-up.target" ];
     };