blob: b142e1f0b65f13115ba680c7103ba85010d951d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{config, ...}: {
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";
};
};
};
}
|