summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-09-10 20:18:39 +0200
committerAlexander Ried <ried@mytum.de>2016-09-13 11:19:22 +0200
commit795defaae0664fe8315f0baed19c8c7a9cabe8d0 (patch)
tree79d75e01584cc7fe09473fb94e9c446e53f623dc
parent67d9369e5d65a67f35abde5adaccba706f0052c8 (diff)
downloadnixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.tar
nixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.tar.gz
nixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.tar.bz2
nixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.tar.lz
nixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.tar.xz
nixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.tar.zst
nixpkgs-795defaae0664fe8315f0baed19c8c7a9cabe8d0.zip
tcpcrypt service: remove use of network-interfaces.target
-rw-r--r--nixos/modules/services/networking/tcpcrypt.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/tcpcrypt.nix b/nixos/modules/services/networking/tcpcrypt.nix
index 267653abce0..2f304165eb4 100644
--- a/nixos/modules/services/networking/tcpcrypt.nix
+++ b/nixos/modules/services/networking/tcpcrypt.nix
@@ -39,7 +39,7 @@ in
       description = "tcpcrypt";
 
       wantedBy = [ "multi-user.target" ];
-      after = [ "network-interfaces.target" ];
+      after = [ "network.target" ];
 
       path = [ pkgs.iptables pkgs.tcpcrypt pkgs.procps ];