From 907828576bdaee72230af7118046eab70105a712 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 16 Apr 2024 13:28:22 -0400 Subject: [PATCH] yuki: remove miniflux yuki: remove miniflux --- hosts/yuki/services/default.nix | 1 - hosts/yuki/services/homepage/services.nix | 15 --------------- hosts/yuki/services/miniflux.nix | 19 ------------------- 3 files changed, 35 deletions(-) delete mode 100644 hosts/yuki/services/miniflux.nix diff --git a/hosts/yuki/services/default.nix b/hosts/yuki/services/default.nix index 6b468de..cff1f4e 100644 --- a/hosts/yuki/services/default.nix +++ b/hosts/yuki/services/default.nix @@ -10,7 +10,6 @@ ./searxng.nix ./anki-sync-server.nix ./paperless.nix - ./miniflux.nix ./hydroxide.nix ]; } diff --git a/hosts/yuki/services/homepage/services.nix b/hosts/yuki/services/homepage/services.nix index 6651f10..ff1f80b 100644 --- a/hosts/yuki/services/homepage/services.nix +++ b/hosts/yuki/services/homepage/services.nix @@ -60,21 +60,6 @@ _: { } ]; } - { - "News" = [ - { - "Miniflux" = { - icon = "miniflux"; - href = "https://rss.internal.flake.sh"; - widget = { - type = "miniflux"; - url = ""; - key = "{{HOMEPAGE_VAR_MINIFLUX_KEY}}"; - }; - }; - } - ]; - } { "Infra" = [ { diff --git a/hosts/yuki/services/miniflux.nix b/hosts/yuki/services/miniflux.nix deleted file mode 100644 index fc93d4f..0000000 --- a/hosts/yuki/services/miniflux.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ - config, - lib, - ... -}: { - sops.secrets.miniflux = {}; - - services.miniflux = { - enable = true; - adminCredentialsFile = config.sops.secrets.miniflux.path; - config = { - LISTEN_ADDR = "0.0.0.0"; - PORT = 9000; - BASE_URL = "https://rss.internal.flake.sh"; - HTTPS = "true"; - DATABASE_URL = lib.mkForce "host=100.94.214.100 port=5432 user=miniflux password=miniflux dbname=miniflux sslmode=disable"; - }; - }; -}