aboutsummaryrefslogtreecommitdiffstats
path: root/modules/vhack/re
diff options
context:
space:
mode:
Diffstat (limited to 'modules/vhack/re')
-rw-r--r--modules/vhack/re/redlib/module.nix28
-rw-r--r--modules/vhack/re/resolvconf/module.nix16
2 files changed, 44 insertions, 0 deletions
diff --git a/modules/vhack/re/redlib/module.nix b/modules/vhack/re/redlib/module.nix
new file mode 100644
index 0000000..4d3c600
--- /dev/null
+++ b/modules/vhack/re/redlib/module.nix
@@ -0,0 +1,28 @@
+{
+ config,
+ pkgsUnstable,
+ lib,
+ ...
+}: let
+ domain = "redlib.vhack.eu";
+
+ cfg = config.vhack.redlib;
+in {
+ options.vhack.redlib = {
+ enable = lib.mkEnableOption ''
+ the redlib reddit frontend
+ '';
+ };
+
+ config = lib.mkIf cfg.enable {
+ services.redlib = {
+ enable = true;
+ package = pkgsUnstable.redlib;
+ port = 8080;
+ address = "127.0.0.1";
+ openFirewall = false;
+ };
+
+ vhack.anubis.instances."${domain}".target = "http://127.0.0.1:${toString config.services.redlib.port}";
+ };
+}
diff --git a/modules/vhack/re/resolvconf/module.nix b/modules/vhack/re/resolvconf/module.nix
new file mode 100644
index 0000000..ff99696
--- /dev/null
+++ b/modules/vhack/re/resolvconf/module.nix
@@ -0,0 +1,16 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.vhack.resolvconf;
+in {
+ options.vhack.resolvconf = {
+ # NOTE(@bpeetz): This condition is taken directly from NixOS. <2024-12-25>
+ enable = lib.mkEnableOption "resolvconf" // {default = !(config.environment.etc ? "resolv.conf");};
+ };
+
+ config = lib.mkIf cfg.enable {
+ users.groups.resolvconf.gid = config.vhack.constants.ids.gids.resolvconf;
+ };
+}