diff options
| author | seth <[email protected]> | 2023-05-21 21:20:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-21 21:20:28 -0400 |
| commit | 3a7cc8116cce947f5652e0e46f4d60d59bfb5717 (patch) | |
| tree | 9450413a40fd28b685deb5e26e229aeb4102eaa5 /hosts/atlas/miniflux.nix | |
| parent | 50da869402b650aaa39b7cbaf38a7639b2bb2d9c (diff) | |
atlas: start hosting miniflux
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"; + }; + }; + }; +} |
