summaryrefslogtreecommitdiff
path: root/hosts/atlas/miniflux.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/atlas/miniflux.nix')
-rw-r--r--hosts/atlas/miniflux.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/hosts/atlas/miniflux.nix b/hosts/atlas/miniflux.nix
deleted file mode 100644
index a7886e6..0000000
--- a/hosts/atlas/miniflux.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- 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";
- };
- };
- };
-}