14 lines
262 B
Nix
14 lines
262 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
{
|
||
|
options.components.media = {
|
||
|
enable = lib.mkEnableOption "Media configurations";
|
||
|
};
|
||
|
|
||
|
imports = [ ./icecast.nix ];
|
||
|
|
||
|
config = mkIf config.components.media.enable {
|
||
|
# todo extract xorg stuff to prepare wayland
|
||
|
};
|
||
|
}
|