mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-08 20:19:40 +01:00
20 lines
244 B
Nix
20 lines
244 B
Nix
|
{ pkgs, lib, ...}:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../../../lenovo/thinkpad/z/gen2
|
||
|
];
|
||
|
|
||
|
sound.extraConfig = ''
|
||
|
pcm.!default {
|
||
|
type plug
|
||
|
slave.pcm "hw:1,0"
|
||
|
}
|
||
|
|
||
|
ctl.!default {
|
||
|
type hw
|
||
|
card 1
|
||
|
}
|
||
|
'';
|
||
|
}
|