summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--system/services/default.nix1
-rw-r--r--system/services/libreddit/default.nix26
2 files changed, 0 insertions, 27 deletions
diff --git a/system/services/default.nix b/system/services/default.nix
index 52ad177..b8b617e 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -3,7 +3,6 @@
     ./fail2ban
     ./invidious
     ./invidious-router
-    ./libreddit
     ./mail
     ./mastodon
     ./matrix
diff --git a/system/services/libreddit/default.nix b/system/services/libreddit/default.nix
deleted file mode 100644
index f7cc5f8..0000000
--- a/system/services/libreddit/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-  config,
-  pkgsUnstable,
-  lib,
-  ...
-}: let
-  domain = "libreddit.vhack.eu";
-in {
-  services.libreddit = {
-    enable = true;
-    package = pkgsUnstable.redlib;
-    port = 8080;
-    address = "127.0.0.1";
-    openFirewall = false;
-  };
-
-  services.nginx = {
-    enable = true;
-    virtualHosts.${domain} = {
-      locations."/".proxyPass = "http://127.0.0.1:${toString config.services.libreddit.port}";
-
-      enableACME = lib.mkDefault true;
-      forceSSL = lib.mkDefault true;
-    };
-  };
-}