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

12 lines
258 B
Nix
Raw Normal View History

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