mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-04 18:19:40 +01:00
9 lines
133 B
Nix
9 lines
133 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot = {
|
|
extraModprobeConfig = ''
|
|
options snd slots=snd_usb_audio,snd-hda-intel
|
|
'';
|
|
};
|
|
}
|