nixos-config/linux/nebula/jellyfin.nix

11 lines
142 B
Nix
Raw Normal View History

2023-10-09 10:44:07 -07:00
{ config, ... }:
2024-02-26 21:06:48 -08:00
2023-10-09 10:44:07 -07:00
{
hardware.opengl.enable = true;
services.jellyfin = {
enable = true;
user = config.constants.userName;
};
}