blob: d25b588bb20ad218f810214d751158ac596966bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{config, ...}: {
age.secrets .miniflux.file =
../../secrets/${config.networking.hostName}/miniflux.age;
services.miniflux = {
enable = true;
adminCredentialsFile = config.age.secrets.miniflux.path;
config = {
BASE_URL = "https://miniflux.${config.networking.domain}";
LISTEN_ADDR = "localhost:7000";
};
};
}
|