This commit is contained in:
xunuwu 2025-03-14 17:22:35 +01:00
parent 58e9a46c46
commit a12bc16792
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
6 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{
config,
lib,
...
}: {
systemd.services.miniflux.serviceConfig.RuntimeDirectoryMode = lib.mkForce "0755";
services.miniflux = {
enable = true;
adminCredentialsFile = config.sops.secrets.miniflux.path;
config = {
LISTEN_ADDR = "/run/miniflux/miniflux.sock";
};
};
}