From 4a14b2cf8e02e26fe3d6fee744bd0b99dd0b353c Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Fri, 9 Jan 2026 20:32:52 +0100 Subject: [PATCH] clean up --- modules/miniflux.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 modules/miniflux.nix diff --git a/modules/miniflux.nix b/modules/miniflux.nix deleted file mode 100644 index 39e8617..0000000 --- a/modules/miniflux.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ config, lib, ... }: - -let - cfg = config.services.miniflux-custom; -in -{ - options.services.miniflux-custom = { - port = lib.mkOption { - type = lib.types.port; - default = 8070; - description = "Port for Miniflux to listen on"; - }; - }; - - config = { - services.miniflux = { - enable = true; - adminCredentialsFile = "/etc/miniflux-admin-credentials"; - config = { - LISTEN_ADDR = "0.0.0.0:${toString cfg.port}"; - BASE_URL = "https://rss.yanlincs.com"; - }; - }; - }; -}