jellyfin instead of plex

This commit is contained in:
Haak Saxberg 2022-08-09 23:56:09 -07:00
parent 1dc870e664
commit 431db062bc
3 changed files with 73 additions and 15 deletions

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports =
@ -11,7 +11,7 @@
./hardware-configuration.nix
./glibc-locale-paths.nix
../common/users.nix
../../home/programs/plex
../../home/programs/jellyfin
];
# Use the systemd-boot EFI boot loader.
@ -79,6 +79,23 @@
services.xserver.layout = "us";
nixpkgs.config.packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
};
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [
intel-media-driver
vaapiIntel
vaapiVdpau
libvdpau-va-gl
intel-compute-runtime # OpenCL filter support (hardware tonemapping and subtitle burn-in)
];
};
# 2. override default hardening measure from NixOS - this is default since 22.05
systemd.services.jellyfin.serviceConfig.PrivateDevices = lib.mkForce false;
# Enable touchpad support.
# services.xserver.libinput.enable = true;