diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-06-07 12:01:37 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-06-07 12:01:37 +0530 |
| commit | c5af111d1c7dbf84139941b69561d34ddb5ab551 (patch) | |
| tree | 1ea784141f39b4dc427fc2c565fb23bfc3021041 /modules | |
| parent | 7bcd223aa4537f054eb140c3b5461ee7a4d03b19 (diff) | |
| download | nixos-config-c5af111d1c7dbf84139941b69561d34ddb5ab551.tar.gz nixos-config-c5af111d1c7dbf84139941b69561d34ddb5ab551.zip | |
Add jellyfin server
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/torrent.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/torrent.nix b/modules/torrent.nix index 884d646..2151705 100644 --- a/modules/torrent.nix +++ b/modules/torrent.nix @@ -7,6 +7,7 @@ let radarrPort = 7878; sonarrPort = 8989; prowlarrPort = 9696; + jellyfinPort = 8096; group = "multimedia"; in @@ -23,6 +24,7 @@ in sonarr.port = sonarrPort; radarr.port = radarrPort; prowlarr.port = prowlarrPort; + jellyfin.port = jellyfinPort; }; services.transmission = { @@ -78,9 +80,15 @@ in services.prowlarr = { enable = true; - # openFirewall = true; settings = { server.port = prowlarrPort; }; }; + + services.jellyfin = { + enable = true; + user = "imsohexy"; + group = group; + openFirewall = true; + }; } |
