nixos-config/nixos/machines/robi/jellyfin.nix

12 lines
259 B
Nix
Raw Normal View History

2023-01-23 20:04:50 +01:00
{ config, lib, pkgs, ... }:
{
services.jellyfin.enable = true;
services.jellyfin.openFirewall = false;
users.groups."syncthing".members = [ "jellyfin" ];
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
}