This repository has been archived on 2024-08-18. You can view files and clone it, but cannot push or open issues or pull requests.
linux-hardened/audio.nix
2024-08-03 10:28:48 +02:00

14 lines
200 B
Nix

{ lib, ... }:
with lib.kernel;
{
SOUND = yes;
SND = yes;
SND_PCM_TIMER = yes;
SND_DYNAMIC_MINORS = yes;
SND_SUPPORT_OLD_API = no;
SND_PCI = yes;
SND_USB = yes;
SND_USB_AUDIO = yes;
}