| 8 May 2025 |
@hexa:lossy.network | I have not yet followed the hass reference upwards | 16:34:52 |
@hexa:lossy.network | too many sidequests | 16:35:01 |
dotlambda | Actually I just pushed a fix for the ring component | 16:36:48 |
dotlambda | But now I'm really done | 16:37:33 |
@hexa:lossy.network | https://github.com/NixOS/nixpkgs/pull/405025#issuecomment-2863461715 | 16:37:43 |
@hexa:lossy.network | 🙂 | 16:37:44 |
@hexa:lossy.network | protobuf bumps are always to violent | 16:38:14 |
@hexa:lossy.network | smh | 16:38:15 |
@hexa:lossy.network | that is the exact same package you touched, so we can close | 16:39:52 |
K900 | Can't spell protobuf without uf | 16:39:58 |
K900 | Or something | 16:40:00 |
| * @hexa:lossy.network nods | 16:40:06 |
dotlambda | We now support more than 92% of all components 🎉 | 16:43:58 |
@hexa:lossy.network | whew 😄 | 16:44:53 |
dotlambda | Btw, baloob was on the Home Assistant podcast and said something about cleaning up the esphome build pipeline. I didn't do any research but maybe there's hope of turning platformio into something that's more compatible with Nixpkgs | 16:45:39 |
dotlambda | I guess we need to go lobby upstream | 16:45:47 |
@hexa:lossy.network | interesting | 16:46:17 |
@hexa:lossy.network | https://hasspodcast.io/ha184/ this one? | 16:46:39 |
dotlambda | In reply to @hexa:lossy.network https://hasspodcast.io/ha184/ this one? Yes. But it was just a remark in passing | 16:47:17 |
@hexa:lossy.network | ok | 16:47:22 |
dotlambda | If anyone happens to listen it in the future, please let us know the timestamp of the esphome remark | 16:56:49 |
@hexa:lossy.network | I can just … | 16:58:55 |
@hexa:lossy.network |
[19:47.180 --> 19:50.140] clean up the build pipeline of ESP Home.
| 16:59:37 |
@hexa:lossy.network | https://gist.github.com/mweinelt/61d2f668c14edb45375497be424d80ce | 17:01:34 |
@hexa:lossy.network | expreesive 🫣 | 17:01:54 |
@hexa:lossy.network | * expressive 🫣 | 17:02:00 |
@hexa:lossy.network | espressif donated 25k to the open home foundation | 17:02:08 |
@hexa:lossy.network | which is probably the money he talks about | 17:02:15 |
| 9 May 2025 |
kranzes | Can somebody know why I'm getting lots of errors about missing bluetooth and ZHA related python modules with the following config:
services.home-assistant = {
enable = true;
extraPackages = ps: with ps; [ psycopg2 ];
extraComponents = [
"isal"
"history"
"logbook"
"mobile_app"
"zeroconf"
"esphome"
"met"
"smlight"
];
customComponents = with pkgs.home-assistant-custom-components; [
auth_oidc
];
config = {
http = {
server_host = "127.0.0.1";
trusted_proxies = [ hassCfg.http.server_host ];
use_x_forwarded_for = true;
cors_allowed_origins = [ "https://portal.ilanjoselevich.com" ];
};
homeassistant.external_url = "https://${domain}";
recorder.db_url = "postgresql://@/hass";
auth_oidc = {
client_id = "home-assistant";
discovery_url = "https://idm.ilanjoselevich.com/oauth2/openid/home-assistant/.well-known/openid-configuration";;
client_secret = "!secret auth_oidc_client_secret";
id_token_signing_alg = "ES256";
roles.admin = "home-assistant_admins@idm.ilanjoselevich.com";
};
frontend.themes = "!include ${catppuccin-theme}";
history = { };
logbook = { };
zeroconf = { };
mobile_app = { };
};
};
| 01:15:27 |
kranzes | * Does somebody know why I'm getting lots of errors about missing bluetooth and ZHA related python modules with the following config:
services.home-assistant = {
enable = true;
extraPackages = ps: with ps; [ psycopg2 ];
extraComponents = [
"isal"
"history"
"logbook"
"mobile_app"
"zeroconf"
"esphome"
"met"
"smlight"
];
customComponents = with pkgs.home-assistant-custom-components; [
auth_oidc
];
config = {
http = {
server_host = "127.0.0.1";
trusted_proxies = [ hassCfg.http.server_host ];
use_x_forwarded_for = true;
cors_allowed_origins = [ "https://portal.ilanjoselevich.com" ];
};
homeassistant.external_url = "https://${domain}";
recorder.db_url = "postgresql://@/hass";
auth_oidc = {
client_id = "home-assistant";
discovery_url = "https://idm.ilanjoselevich.com/oauth2/openid/home-assistant/.well-known/openid-configuration";;
client_secret = "!secret auth_oidc_client_secret";
id_token_signing_alg = "ES256";
roles.admin = "home-assistant_admins@idm.ilanjoselevich.com";
};
frontend.themes = "!include ${catppuccin-theme}";
history = { };
logbook = { };
zeroconf = { };
mobile_app = { };
};
};
| 01:15:38 |