16 lines
266 B
Nix
16 lines
266 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
hardware.opengl.enable = true;
|
|
|
|
services = let const = config.constants; in {
|
|
jellyfin = {
|
|
enable = true;
|
|
user = const.userName;
|
|
};
|
|
jellyseerr = {
|
|
enable = true;
|
|
port = const.port.jellyseerr;
|
|
};
|
|
};
|
|
}
|