Merge pull request #1744 from d-goldin/fw13-ai-300-blacklist-amd-acp
Some checks failed
Test / nixfmt (push) Has been cancelled
Test / tests (push) Has been cancelled

Framework 13 AI 300: Disabling AMD ACP sound card
This commit is contained in:
Naïm Camille Favier 2026-01-25 00:48:57 +00:00 committed by GitHub
commit a351494b0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,5 +22,15 @@
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.15") ( boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.15") (
lib.mkDefault pkgs.linuxPackages_latest lib.mkDefault pkgs.linuxPackages_latest
); );
# The framework bios wrongly reports the ACP device as wired, causing
# issues with alsa ucm, but also generally adding a phantom interface
# to the system.
#
# See discussion in https://github.com/NixOS/nixos-hardware/issues/1603
boot.blacklistedKernelModules = [
"snd_acp70"
"snd_acp_pci"
];
}; };
} }