jellyfin is working on my domain name

This commit is contained in:
pagedMov
2024-11-02 17:12:00 -04:00
parent f3221dbd29
commit e0c183e467
144 changed files with 59 additions and 125 deletions

13
modules/server/cdn/jellyfin.nix Executable file
View File

@@ -0,0 +1,13 @@
{ pkgs, lib, config, ... }:
{
options = {
jellyfinConfig.enable = lib.mkEnableOption "Enables the server's jellyfin config";
};
config = lib.mkIf config.jellyfinConfig.enable {
services.jellyfin = {
enable = true;
openFirewall = true;
};
};
}