9 lines
115 B
Nix
9 lines
115 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./nginx
|
|
];
|
|
|
|
services.jellyfin.enable = config.system.fileserver.enable;
|
|
}
|