diff options
| author | seth <[email protected]> | 2023-12-10 07:05:50 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-10 07:05:50 -0500 |
| commit | 90411b997c347ec133c3e61b0d1f2c8682e994c1 (patch) | |
| tree | 686c3c50abbcfbe2447ce2bdef626fbff6aa5dbb /systems/atlas/miniflux.nix | |
| parent | 173a5800f441aac8d27ea39b284d8e51e517df4b (diff) | |
atlas: start hosting attic
Diffstat (limited to 'systems/atlas/miniflux.nix')
| -rw-r--r-- | systems/atlas/miniflux.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/systems/atlas/miniflux.nix b/systems/atlas/miniflux.nix index b142e1f..d25b588 100644 --- a/systems/atlas/miniflux.nix +++ b/systems/atlas/miniflux.nix @@ -1,16 +1,13 @@ {config, ...}: { - config = { - age.secrets = { - miniflux.file = ../../secrets/${config.networking.hostName}/miniflux.age; - }; + age.secrets .miniflux.file = + ../../secrets/${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"; - }; + services.miniflux = { + enable = true; + adminCredentialsFile = config.age.secrets.miniflux.path; + config = { + BASE_URL = "https://miniflux.${config.networking.domain}"; + LISTEN_ADDR = "localhost:7000"; }; }; } |
