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