15 lines
246 B
Nix
15 lines
246 B
Nix
{lib, ...}:
|
|
with lib; {
|
|
imports = [
|
|
./system.nix
|
|
./encoding.nix
|
|
./network.nix
|
|
./branding.nix
|
|
];
|
|
options.services.declarative-jellyfin = {
|
|
enable = mkEnableOption "Jellyfin Service";
|
|
|
|
# TODO: implement options
|
|
};
|
|
}
|