From 6c2bd3f2d5bd2e5fe7984fdf75f1e928e0ec8c5c Mon Sep 17 00:00:00 2001 From: h7x4 Date: Wed, 12 Jul 2023 23:38:41 +0200 Subject: [PATCH] tsuki/invidious: remove redundant code, add comments --- hosts/tsuki/services/invidious.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hosts/tsuki/services/invidious.nix b/hosts/tsuki/services/invidious.nix index 20fce2a..cba8908 100644 --- a/hosts/tsuki/services/invidious.nix +++ b/hosts/tsuki/services/invidious.nix @@ -10,6 +10,7 @@ port = 19283; + # This will implicitly use unix socket database = { createLocally = true; passwordFile = config.sops.secrets."postgres/invidious".path; @@ -18,13 +19,8 @@ settings = { registration_enabled = false; host_binding = "127.0.0.1"; - # popular_enabled = false; }; }; - - systemd.services.invidious = { - requires = [ "postgresql.service" ]; - }; }