declarative-jellyfin/modules/options/default.nix
Snorre Ettrup Altschul 0696a90d23
Some checks failed
Run tests / run_tests (push) Failing after 8s
refactored config
2025-04-04 00:35:51 +02:00

21 lines
376 B
Nix

{
config,
pkgs,
lib,
...
}: let
cfg = config.services.declarative-jellyfin;
toXml' = (import ../../lib {nixpkgs = pkgs;}).toXMLGeneric;
in
with lib; {
imports = [
./system.nix
./encoding.nix
./network.nix
./branding.nix
];
options.services.declarative-jellyfin = {
enable = mkEnableOption "Jellyfin Service";
};
}