nix/hosts/marvin/services/miniflux.nix

15 lines
327 B
Nix
Raw Normal View History

2022-06-13 17:38:50 +00:00
{
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";
};
}