From eaa2d27b907e30e42f456573218c72479d198f74 Mon Sep 17 00:00:00 2001 From: volth Date: Wed, 26 Jul 2017 14:46:24 +0000 Subject: [PATCH] nixos/tinc: remove restartTriggers ```restartTriggers``` pointed to the constant files in ```/nix/store/``` and had to effect. --- nixos/modules/services/networking/tinc.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/services/networking/tinc.nix b/nixos/modules/services/networking/tinc.nix index 31a588318f6a..be5bfaebf7d2 100644 --- a/nixos/modules/services/networking/tinc.nix +++ b/nixos/modules/services/networking/tinc.nix @@ -164,8 +164,6 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; path = [ data.package ]; - restartTriggers = [ config.environment.etc."tinc/${network}/tinc.conf".source ] - ++ mapAttrsToList (host: _ : config.environment.etc."tinc/${network}/hosts/${host}".source) data.hosts; serviceConfig = { Type = "simple"; PIDFile = "/run/tinc.${network}.pid";