mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
14 lines
164 B
Nix
Executable File
14 lines
164 B
Nix
Executable File
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
services.miniflux = {
|
|
enable = false;
|
|
config = {
|
|
CLEANUP_FREQUENCY = 48;
|
|
LISTEN_ADDR = "localhost:6061";
|
|
};
|
|
};
|
|
}
|