this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add jellyfin

+11
+1
hosts/box/default.nix
··· 21 21 ../profiles/sync/website 22 22 # ../profiles/archivebox 23 23 ../profiles/woodpecker-agent 24 + ../profiles/jellyfin 24 25 ]; 25 26 26 27 # Something broke when manually updating grasp...
+10
hosts/profiles/jellyfin/default.nix
··· 1 + { config, lib, pkgs, ... }: 2 + { 3 + services.jellyfin = { 4 + enable = true; 5 + user = "jellyfin"; 6 + group = "video"; 7 + openFirewall = true; # only for defaults 8 + }; 9 + networking.firewall.allowedTCPPorts = [ 8181 ]; 10 + }