11 lines
304 B
Nix
11 lines
304 B
Nix
{...}: {
|
|
flake.nixosModules.home-assistant-jellyfin = {
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf (config.services.home-assistant.extensions.jellyfin.enable) {
|
|
services.home-assistant.extraComponents = ["jellyfin"];
|
|
# TODO: configure port, address, and login information here
|
|
};
|
|
}
|