Merge pull request #1744 from d-goldin/fw13-ai-300-blacklist-amd-acp
Framework 13 AI 300: Disabling AMD ACP sound card
This commit is contained in:
commit
a351494b0e
1 changed files with 10 additions and 0 deletions
|
|
@ -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"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue