summary refs log tree commit diff
path: root/modules/jellyfin.nix
blob: 119457378d951587b6d7a520c3df58ef5e1232c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, pkgs, unstable, ... }:

let
  auxiliaryPkgs = import ../pkgs { inherit pkgs unstable; };
in
{
  services.jellyfin = {
    enable = true;
    openFirewall = true;
    package = auxiliaryPkgs.jellyfin;
  };

  environment.systemPackages = (with auxiliaryPkgs; [
    jellyfin
    jellyfin-web
    pkgs.jellyfin-ffmpeg
  ]);
}