Simplify Jellyfin config

This commit is contained in:
Jan Kremer 2026-02-20 11:01:28 +01:00
parent c10d627a5a
commit 32d185cd88
No known key found for this signature in database

View file

@ -1,22 +1,6 @@
{ pkgs, ... }:
{
services = {
jellyfin = {
enable = true; # port = 8096
hardwareAcceleration = {
enable = true;
type = "qsv";
device = "/dev/dri/renderD128";
};
# forceEncodingConfig = true;
transcoding = {
enableHardwareEncoding = true;
};
};
};
services.jellyfin.enable = true; # port = 8096
## Grab EPG data daily
systemd = {
@ -31,7 +15,8 @@
Type = "oneshot";
User = "root";
};
startAt = "daily"; # Creates a timer
## Creates a timer
startAt = "daily";
};
};
timers.epg.timerConfig.Persistent = true;