Peter Sanford

Results 76 comments of Peter Sanford

I turned this into an overlay if thats useful to anyone else: https://gist.github.com/psanford/1f70a0838c308d28478cf27a9b55c43d I can confirm this works for me.

You can run afilini's simply by running `nix-shell shell.nix`. You can add my overlay to your `configuration.nix` like so: ``` nixpkgs.overlays = [ (import ./overlays/chromium-widevine-overlay.nix) ] ``` These are both...

FWIW, your instructions work fine for me with zig installed from nixpkgs-23.05 on my m2 air. Is there any error in `dmesg`?

I have luks working with an m2 air. This is my initrd module config, if its helpful: ``` boot.initrd.kernelModules = [ "usb_storage" "usbhid" "dm-crypt" "xts" "encrypted_keys" "ext4" "dm-snapshot" ]; ```

The only thing that makes sense long term is to use the default nixpkgs aarch64 kernel config + asahi specific modules. That will give the most users the behavior that...

> Note that just the size of the config file itself is almost twice the size of the configs I suggest in my pull requests. It has support for every...

> Currently I have two pull requests sitting for 5-7 days without any reply. Reviewing PRs is a burden on maintainers. If you use the stock kernel config that is...

I've started to see this same issue as well on stock Android 14 on a Pixel 8.

Hmm, if the server you are talking to doesn't support the 'Message-Authenticator' why are you calling verify_response? I don't think we should change verify_response to call packets without the authenticator...

Sorry, I miss read the rfc. It says 'Message-Authenticator' is optional for the clients to send which I misread and thought that it was optional for the servers. Disregard my...