summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorlunik1 <ch.gpg@themaw.xyz>2021-12-08 22:17:24 +0000
committerlunik1 <ch.gpg@themaw.xyz>2021-12-08 22:18:25 +0000
commit1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f (patch)
tree942c653d213efe179d6968df96acc855f829f38f /nixos/modules
parent19057428f94082703e442e5476b9f827a856a321 (diff)
downloadnixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.tar
nixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.tar.gz
nixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.tar.bz2
nixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.tar.lz
nixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.tar.xz
nixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.tar.zst
nixpkgs-1f0bbdb6fcf45b2a88e498f27ffc1128d3be221f.zip
nixos/adguardhome: remove syslog.target from service
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/adguardhome.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/adguardhome.nix b/nixos/modules/services/networking/adguardhome.nix
index 4388ef2b7e5..03f9b9f9bad 100644
--- a/nixos/modules/services/networking/adguardhome.nix
+++ b/nixos/modules/services/networking/adguardhome.nix
@@ -56,7 +56,7 @@ in
   config = mkIf cfg.enable {
     systemd.services.adguardhome = {
       description = "AdGuard Home: Network-level blocker";
-      after = [ "syslog.target" "network.target" ];
+      after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
       unitConfig = {
         StartLimitIntervalSec = 5;