mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
18 lines
297 B
Nix
Executable File
18 lines
297 B
Nix
Executable File
{
|
|
config,
|
|
inputs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
services.miniflux = {
|
|
enable = true;
|
|
config = {
|
|
ADMIN_USERNAME = "";
|
|
CLEANUP_FREQUENCY = 48;
|
|
LISTEN_ADDR = "0.0.0.0:6061";
|
|
};
|
|
adminCredentialsFile = "${inputs.zeroq-credentials}/services/miniflux/admin-pass.txt";
|
|
};
|
|
}
|