From 6c210d09df325b60cb814fc17ace775113c36de2 Mon Sep 17 00:00:00 2001 From: coolneng Date: Thu, 27 Jul 2023 01:24:04 +0200 Subject: [PATCH] Remove dependency on DNS blocklist for DNS server --- modules/periodic.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/periodic.nix b/modules/periodic.nix index 1f96230..e4f4c16 100644 --- a/modules/periodic.nix +++ b/modules/periodic.nix @@ -14,7 +14,7 @@ in { }; # Fetch hosts-blocklists daily - # FIXME Download the list if the file doesn't exist the first time + # TODO Download the list if the file doesn't exist the first time systemd.services.download-dns-blocklist = { description = "Download hosts-blocklists"; wantedBy = [ "default.target" ]; @@ -27,7 +27,6 @@ in { postStop = '' chown -R dnsmasq ${stateDir} ''; - requiredBy = [ "dnsmasq.service" ]; startAt = "02:00:00"; };