diff options
Diffstat (limited to 'hosts/atlas/miniflux.nix')
| -rw-r--r-- | hosts/atlas/miniflux.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hosts/atlas/miniflux.nix b/hosts/atlas/miniflux.nix new file mode 100644 index 0000000..a7886e6 --- /dev/null +++ b/hosts/atlas/miniflux.nix @@ -0,0 +1,20 @@ +{ + config, + self, + ... +}: { + config = { + age.secrets = { + miniflux.file = "${self}/secrets/hosts/${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"; + }; + }; + }; +} |
