Add missing packages and enable nginx

This commit is contained in:
Jordan Holt 2025-01-05 11:06:25 +00:00
parent 378f2d9882
commit 99dd5ec1fe
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -368,12 +368,19 @@
"zone" "zone"
]; ];
extraPackages = python3Packages: with python3Packages; [
pyeiscp
zeroconf
];
customLovelaceModules = with pkgs.home-assistant-custom-lovelace-modules; [ customLovelaceModules = with pkgs.home-assistant-custom-lovelace-modules; [
mushroom mushroom
]; ];
}; };
services.nginx.virtualHosts."home.mesh.vimium.net" = { services.nginx = {
enable = true;
virtualHosts."home.mesh.vimium.net" = {
forceSSL = false; forceSSL = false;
extraConfig = '' extraConfig = ''
proxy_buffering off; proxy_buffering off;
@ -383,6 +390,7 @@
proxyWebsockets = true; proxyWebsockets = true;
}; };
}; };
};
services.mosquitto = { services.mosquitto = {
enable = true; enable = true;