nix/hosts/marvin/services/miniflux.nix
2022-06-13 13:44:16 -04:00

14 lines
327 B
Nix

{
services.miniflux = {
enable = true;
config = {
PORT = "6000";
FETCH_YOUTUBE_WATCH_TIME = "1";
BASE_URL = "https://rss.thehedgehog.me";
CREATE_ADMIN = "1";
RUN_MIGRATIONS = "1";
INVIDIOUS_INSTANCE = "il.ax";
};
adminCredentialsFile = "/run/agenix/miniflux-admin";
};
}