2023-06-09 02:32:28 +02:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
options.components.media = {
|
|
|
|
enable = lib.mkEnableOption "Media configurations";
|
|
|
|
};
|
|
|
|
|
2023-08-25 11:33:25 +02:00
|
|
|
imports = [
|
|
|
|
./icecast.nix
|
|
|
|
./tts.nix
|
2023-11-07 09:02:41 +01:00
|
|
|
./video.nix
|
2023-08-25 11:33:25 +02:00
|
|
|
];
|
2023-06-09 02:32:28 +02:00
|
|
|
|
2023-08-25 11:33:25 +02:00
|
|
|
config = mkIf config.components.media.enable { };
|
2023-06-09 02:32:28 +02:00
|
|
|
}
|