nixos-config/linux/nebula/jellyfin.nix
2023-10-09 10:44:07 -07:00

9 lines
141 B
Nix

{ config, ... }:
{
hardware.opengl.enable = true;
services.jellyfin = {
enable = true;
user = config.constants.userName;
};
}