summary refs log tree commit diff
path: root/nixos/modules/services/networking/oidentd.nix
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-09-10 20:17:04 +0200
committerAlexander Ried <ried@mytum.de>2016-09-13 11:19:22 +0200
commit652e0b4b8a2d4c5b7511f103d8049846602c2206 (patch)
tree5e0a38b1714f735fa5e3be0aca36bb4e1eb9bfdd /nixos/modules/services/networking/oidentd.nix
parentae716674514dde31b452f0462e62e059780d5e05 (diff)
downloadnixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.tar
nixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.tar.gz
nixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.tar.bz2
nixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.tar.lz
nixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.tar.xz
nixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.tar.zst
nixpkgs-652e0b4b8a2d4c5b7511f103d8049846602c2206.zip
oidentd service: network-interfaces.target -> network.target
Diffstat (limited to 'nixos/modules/services/networking/oidentd.nix')
-rw-r--r--nixos/modules/services/networking/oidentd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/oidentd.nix b/nixos/modules/services/networking/oidentd.nix
index 651bb8e967c..ba7acd87954 100644
--- a/nixos/modules/services/networking/oidentd.nix
+++ b/nixos/modules/services/networking/oidentd.nix
@@ -25,7 +25,7 @@ with lib;
 
   config = mkIf config.services.oidentd.enable {
     systemd.services.oidentd = {
-      after = [ "network-interfaces.target" ];
+      after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
       serviceConfig.Type = "forking";
       script = "${pkgs.oidentd}/sbin/oidentd -u oidentd -g nogroup" +