10 lines
142 B
Nix
10 lines
142 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
hardware.opengl.enable = true;
|
|
|
|
services.jellyfin = {
|
|
enable = true;
|
|
user = config.constants.userName;
|
|
};
|
|
}
|