1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-22 19:09:42 +01:00

Adding a sound speaker fix. Issue #1039

This commit is contained in:
Felipe Micaroni Lalli 2024-11-05 23:36:11 -03:00 committed by mergify[bot]
parent 684d64c67d
commit 90642a0dea

View file

@ -25,6 +25,13 @@
};
};
# Sound speaker fix, see #1039
boot.extraModprobeConfig = ''
options snd-hda-intel model=auto
'';
boot.blacklistedKernelModules = [ "snd_soc_avs" ];
# Cooling management
services.thermald.enable = lib.mkDefault true;