summary refs log tree commit diff
path: root/nixos/modules/services/networking/openvpn.nix
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2016-10-02 16:34:37 +0200
committerGitHub <noreply@github.com>2016-10-02 16:34:37 +0200
commit0906a0f19718605a8074c1c1bf0b3368f8e0d09c (patch)
tree77d768b4693a4d5b05858609f22782c461c1b9bd /nixos/modules/services/networking/openvpn.nix
parentc2ee2a723f4d97de650e972e69c03acb5c2197da (diff)
parentfc0dc65f416ccc3e5cc4acfca7aaf93b50890670 (diff)
downloadnixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.tar
nixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.tar.gz
nixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.tar.bz2
nixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.tar.lz
nixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.tar.xz
nixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.tar.zst
nixpkgs-0906a0f19718605a8074c1c1bf0b3368f8e0d09c.zip
Merge pull request #18491 from groxxda/network-interfaces
Replace Network-interfaces.target
Diffstat (limited to 'nixos/modules/services/networking/openvpn.nix')
-rw-r--r--nixos/modules/services/networking/openvpn.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix
index 8ee86ea863e..3fbf5a9f022 100644
--- a/nixos/modules/services/networking/openvpn.nix
+++ b/nixos/modules/services/networking/openvpn.nix
@@ -56,7 +56,7 @@ let
       description = "OpenVPN instance ‘${name}’";
 
       wantedBy = optional cfg.autoStart "multi-user.target";
-      after = [ "network-interfaces.target" ];
+      after = [ "network.target" ];
 
       path = [ pkgs.iptables pkgs.iproute pkgs.nettools ];