13 lines
151 B
Nix
13 lines
151 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.services.declarative-jellyfin;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
# TODO: implement
|
|
};
|
|
}
|