declarative-jellyfin/modules/options/default.nix
Snorre Ettrup Altschul 4c4f67360b
All checks were successful
Run tests / run_tests (push) Successful in 52s
formatted
2025-04-04 00:53:43 +02:00

13 lines
215 B
Nix

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