10 lines
153 B
Nix
10 lines
153 B
Nix
|
{ config, pkgs, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
services.miniflux = {
|
||
|
enable = true;
|
||
|
adminCredentialsFile = "/home/tsv/.miniflux_admin_credentials";
|
||
|
};
|
||
|
}
|
||
|
|