20 lines
288 B
Nix
20 lines
288 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.services.declarative-jellyfin;
|
|
in {
|
|
options.services.declarative-jellyfin = {
|
|
enable = mkEnableOption "Jellyfin Service";
|
|
|
|
# TODO: implement options
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
# TODO: implement
|
|
};
|
|
}
|