infrastructure/hosts/kinda.sus.lol/services/jellyfin.nix

11 lines
169 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
jellyfin-ffmpeg
];
services.jellyfin = {
enable = true;
openFirewall = true;
};
}