Skip to content

Instantly share code, notes, and snippets.

View Fireye04's full-sized avatar
♥️
Side projects

Kai Koehler Fireye04

♥️
Side projects
View GitHub Profile
@khalilst
khalilst / WRITEUP.md
Created February 15, 2026 13:13
Fix: CS35L56 second amplifier not working on Intel Lunar Lake SPI

Fix: CS35L56 second amplifier not working on Intel Lunar Lake SPI

Problem

On HP laptops (and potentially ASUS) with Intel Lunar Lake processors using dual Cirrus Logic CS35L56 amplifiers over SPI, only the first amplifier (CS0) works. The second amplifier (CS1) fails with HALO_STATE=0x0 (firmware boot timeout). Speakers work correctly in Windows.

Affected bugs:

{
systemd.user = {
services.niriusd = {
Unit = {
Description = "nirius utilities";
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.nirius}/bin/niriusd";
};
{ lib
, fetchFromSourcehut
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "nirius";
version = "0.4.1";
src = fetchFromSourcehut {
@Heidi-Negrete
Heidi-Negrete / deploy.yml
Last active October 20, 2025 01:23
Deploy a Godot 4 game to Github Pages
name: "Publish to GitHub Pages"
env:
GODOT_VERSION: 4.1.2
on:
workflow_dispatch:
push:
branches:
- main