declarative-jellyfin/modules/options/default.nix
Snorre Ettrup Altschul 33a30b1d2a
Some checks failed
Run tests / run_tests (push) Failing after 3s
fixed shit
2025-04-04 00:53:14 +02:00

16 lines
221 B
Nix

{
lib,
...
}:
with lib; {
imports = [
./system.nix
./encoding.nix
./network.nix
./branding.nix
];
options.services.declarative-jellyfin = {
enable = mkEnableOption "Jellyfin Service";
};
}