Jonah Bron
Jonah Bron
@MderM FYI the [Improbable GRPC-Web](/improbable-eng/grpc-web) implementation supports using the WebSockets API for connections. This official blog post mentions that if option is required, devs should consider using that alternate implementation....
Seeing other comments around this affecting non-ESP related stuff, might have some useful resources https://github.com/NixOS/nixpkgs/issues/169193
I can now get into a shell with `nix develop` with your fork. However, I'm still having trouble pulling it into another flake for building. ```nix { inputs = {...
After hours of fiddling I got it to _almost_ work. But now, it looks like the compiler is trying to download files over the network! ``` Dependencies lock doesn't exist,...
It's not my favorite, but the solution (plus a bunch of other little fixes) was to make it into a known-output derivation; adding a `outputHash` prop etc. so that the...
Settled onto what I think is quite a nice Nix expression for this purpose. https://git.sr.ht/~jonahbron/doorbell/tree/83e24a1477a65b0d3902d2492baab623cfc7baed/item/firmware.nix Hopefully this can be a useful reference so nobody has to burn as much time...
Actually, because I necessarily have to have the Git fix in my project too, this PR has no efffect. Removing it my build still works. https://git.sr.ht/~jonahbron/doorbell/tree/701ca6b16861b7183e72719be843a34308d2cc5b/item/flake.nix @madmo At this point...
@rengare Your flake wrapper helper (Mesa at least) are working great for me, thank you!
My workaround is to bind `kernels/` to a different drive temporarily when I'm running a rebuild that I know will swap the kernel. (running as root) ```bash cd mkdir kernels-tmp...
I've been able to alleviate this problem even further by ensuring only one kernel version is maintained at a time. https://search.nixos.org/options?channel=unstable&show=boot.loader.grub.configurationLimit ``` boot.loader.grub.configurationLimit = 1; ``` Still not ideal, but...