aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-06-14 13:03:42 +0530
committerAkshay Nair <phenax5@gmail.com>2025-06-14 13:03:42 +0530
commit370b46aa29240140239c54c00aabe481a76c8b8c (patch)
tree9aab89c6d2b7dc30f6c7c605410e50b83bc71907 /modules
parentbbf5ca376326363aeef437c885d98c5c3c54176e (diff)
downloadhomeserver-nixos-config-370b46aa29240140239c54c00aabe481a76c8b8c.tar.gz
homeserver-nixos-config-370b46aa29240140239c54c00aabe481a76c8b8c.zip
Add jellyseer
Diffstat (limited to 'modules')
-rw-r--r--modules/dashboard/default.nix17
-rw-r--r--modules/media/default.nix6
-rw-r--r--modules/network/default.nix1
3 files changed, 19 insertions, 5 deletions
diff --git a/modules/dashboard/default.nix b/modules/dashboard/default.nix
index d5ee353..196eab1 100644
--- a/modules/dashboard/default.nix
+++ b/modules/dashboard/default.nix
@@ -21,11 +21,11 @@ in
color = "#AA5CC3";
}
{
- title = "Sonarr";
- key = "s";
- url = "http://sonarr.local";
- altUrl = "http://${settings.network.host}:${toString ports.sonarr}";
- color = "#4c82cf";
+ title = "Jellyseer";
+ key = "l";
+ url = "http://jellyseerr.local";
+ altUrl = "http://${settings.network.host}:${toString ports.jellyseerr}";
+ color = "#5345e6";
}
{
title = "Radarr";
@@ -35,6 +35,13 @@ in
color = "#fcbd00";
}
{
+ title = "Sonarr";
+ key = "s";
+ url = "http://sonarr.local";
+ altUrl = "http://${settings.network.host}:${toString ports.sonarr}";
+ color = "#4c82cf";
+ }
+ {
title = "Prowlarr";
key = "p";
url = "http://prowlarr.local";
diff --git a/modules/media/default.nix b/modules/media/default.nix
index ac3c2de..e7399f0 100644
--- a/modules/media/default.nix
+++ b/modules/media/default.nix
@@ -57,4 +57,10 @@ in
openFirewall = true;
group = settings.media.group;
};
+
+ services.jellyseerr = {
+ enable = true;
+ openFirewall = true;
+ port = settings.network.ports.jellyseerr;
+ };
}
diff --git a/modules/network/default.nix b/modules/network/default.nix
index f6263f5..5ea3ee1 100644
--- a/modules/network/default.nix
+++ b/modules/network/default.nix
@@ -18,6 +18,7 @@ in
"radarr.local" = { inherit host; port = ports.radarr; };
"prowlarr.local" = { inherit host; port = ports.prowlarr; };
"jellyfin.local" = { inherit host; port = ports.jellyfin; };
+ "jellyseerr.local" = { inherit host; port = ports.jellyseerr; };
"syncthing.local" = { inherit host; port = ports.syncthing; };
"lidarr.local" = { inherit host; port = ports.lidarr; };
"git.local" = { inherit host; port = 80; basePath = "/gitweb/"; };