installed wyoming

This commit is contained in:
Leyla Becker 2025-07-13 17:22:46 -05:00
parent 0e8a148517
commit 2e8eba7709
3 changed files with 58 additions and 0 deletions

View file

@ -34,6 +34,9 @@ in {
jellyfin = {
enable = lib.mkEnableOption "enable the jellyfin plugin";
};
wyoming = {
enable = lib.mkEnableOption "enable wyoming";
};
};
};
@ -108,6 +111,10 @@ in {
services.home-assistant.extraComponents = ["jellyfin"];
# TODO: configure port, address, and login information here
})
(lib.mkIf (config.services.home-assistant.extensions.wyoming.enable) {
services.home-assistant.extraComponents = ["wyoming"];
services.wyoming.enable = true;
})
(lib.mkIf (config.services.home-assistant.database == "postgres") {
host = {
postgres = {