0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

modules/services/networking/tcpcrypt.nix: specify start-up dependencies in systemd style

Thanks, Eelco, for pointing this out.
This commit is contained in:
Peter Simons 2013-09-11 16:32:22 +02:00
parent b6501c0097
commit 4a7d8a84bc

View file

@ -38,7 +38,8 @@ in
jobs.tcpcrypt = {
description = "tcpcrypt";
startOn = "started network-interfaces";
wantedBy = ["multi-user.target"];
after = ["network-interfaces.target"];
path = [ pkgs.iptables pkgs.tcpcrypt pkgs.procps ];