From 57521ab0062c3bdc03328ee04b3074722cc87664 Mon Sep 17 00:00:00 2001 From: kat witch Date: Fri, 16 Jul 2021 23:11:35 +0100 Subject: [PATCH] Disable Loki and Promtail --- config/services/loki.nix | 4 ++-- config/services/promtail.nix | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config/services/loki.nix b/config/services/loki.nix index c9d9fa4c..263459f8 100644 --- a/config/services/loki.nix +++ b/config/services/loki.nix @@ -1,9 +1,9 @@ { config, pkgs, ... }: { - kw.fw.private.tcp.ports = [ 3100 ]; + #kw.fw.private.tcp.ports = [ 3100 ]; services.loki = { - enable = true; + enable = false; configuration = { auth_enabled = false; chunk_store_config = { max_look_back_period = "0s"; }; diff --git a/config/services/promtail.nix b/config/services/promtail.nix index c004b056..c2f206c5 100644 --- a/config/services/promtail.nix +++ b/config/services/promtail.nix @@ -29,6 +29,7 @@ let in { systemd.services.promtail = { + enable = false; description = "Promtail service for Loki"; wantedBy = [ "multi-user.target" ]; wants = [ "yggdrassil.service" ];