Update Purr config; Add Miniflux service

This commit is contained in:
2024-02-24 12:01:51 -06:00
parent 606b54f843
commit 7293c065c1
8 changed files with 40 additions and 12 deletions

View File

@ -0,0 +1,11 @@
{ pkgs, config, ...}: {
services.miniflux = {
enable = true;
adminCredentialsFile = config.age.secrets.miniflux.path;
config = {
CLEANUP_FREQUENCY_HOURS = "72";
LISTEN_ADDR = "0.0.0.0:26343";
BASE_URL = "https://flux.matri.cx";
};
};
}