From 9845c1cade391d3997489ef4359896b375b979fe Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Sun, 9 Jun 2024 14:55:52 +0200 Subject: [PATCH] add step_ca --- modules/services/adguard.nix | 3 +++ systems/mini-pc/configuration.nix | 1 + 2 files changed, 4 insertions(+) diff --git a/modules/services/adguard.nix b/modules/services/adguard.nix index f43f0ac..24bc513 100644 --- a/modules/services/adguard.nix +++ b/modules/services/adguard.nix @@ -40,6 +40,9 @@ in { proxyWebsockets = true; }; }; + systemd.services.adguardhome = { + after = [ "nginx.service" "step-ca.service" ]; + }; services.adguardhome = { enable = true; diff --git a/systems/mini-pc/configuration.nix b/systems/mini-pc/configuration.nix index 7c11fec..252cae2 100644 --- a/systems/mini-pc/configuration.nix +++ b/systems/mini-pc/configuration.nix @@ -9,6 +9,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix ../../modules/services/ssh.nix + ../../modules/services/step-ca.nix ../../modules/services/syncthing.nix ../../modules/fail2ban.nix ../../modules/logging.nix