declarative-jellyfin/modules/options/default.nix
Sveske-Juice 0241d4d590
Some checks failed
Run tests / run_tests (push) Failing after 1h1m10s
tests dont work. need to debug kernel panic
2025-04-06 03:29:59 +02:00

14 lines
231 B
Nix

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