All checks were successful
Run tests / run_tests (push) Successful in 52s
13 lines
215 B
Nix
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";
|
|
};
|
|
}
|