add jellyfin example

This commit is contained in:
Aaron Honeycutt 2024-02-20 16:40:28 -07:00
parent 9ea813f88a
commit 11030fde64

View file

@ -0,0 +1,13 @@
{ config, pkgs, lib, ... }:
{
services.jellyfin = {
enable = true;
user = "aaronh";
};
environment.systemPackages = with pkgs; [
jellyfin
jellyfin-web
jellyfin-ffmpeg
];
}