nixos-config/linux/nebula/jellyfin.nix
2024-02-26 21:06:48 -08:00

10 lines
142 B
Nix

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