alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
open jellyfin ports
author
Sean Aye
date
11 months ago
(Jul 7, 2025, 11:17 AM -0400)
commit
df149df3
df149df3a630b972038d2af57cedc7f04389a4cf
parent
fa2feb4b
fa2feb4ba7321571825903becff76525fc841d5f
+8
-3
1 changed file
Expand all
Collapse all
Unified
Split
configuration.nix
+8
-3
configuration.nix
Reviewed
···
230
230
231
231
jellyfin = {
232
232
enable = true;
233
233
+
openFirewall = true;
233
234
};
234
235
235
236
transmission = {
···
239
240
sabnzbd = {
240
241
enable = true;
241
242
vpn.enable = true;
243
243
+
openFirewall = true;
242
244
};
243
245
244
246
prowlarr.enable = true;
245
247
radarr.enable = true;
246
248
sonarr.enable = true;
247
247
-
jellyseerr.enable = true;
249
249
+
jellyseerr = {
250
250
+
enable = true;
251
251
+
openFirewall = true;
252
252
+
};
248
253
249
254
recyclarr = {
250
255
enable = true;
···
305
310
# services.openssh.enable = true;
306
311
307
312
# Open ports in the firewall.
308
308
-
# networking.firewall.allowedTCPPorts = [ ... ];
309
309
-
# networking.firewall.allowedUDPPorts = [ ... ];
313
313
+
networking.firewall.allowedTCPPorts = [ 8096 5055 ];
314
314
+
networking.firewall.allowedUDPPorts = [ 8096 5055 ];
310
315
# Or disable the firewall altogether.
311
316
# networking.firewall.enable = false;
312
317