mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
lenovo/thinkpad/x1/7th-gen: init
This commit is contained in:
15
lenovo/thinkpad/x1/7th-gen/audio.nix
Normal file
15
lenovo/thinkpad/x1/7th-gen/audio.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ lib, pkgs, ... }:
|
||||
{
|
||||
# This can be removed when the default kernel is at least version 5.6
|
||||
# https://github.com/NixOS/nixpkgs/pull/86168
|
||||
boot.kernelPackages = lib.mkIf
|
||||
(lib.versionOlder pkgs.linux.version "5.6")
|
||||
(lib.mkDefault pkgs.linuxPackages_5_6);
|
||||
|
||||
# This can be removed when PulseAudio is at least version 14
|
||||
# https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X1_Carbon_(Gen_7)#Audio
|
||||
hardware.pulseaudio.extraConfig = ''
|
||||
load-module module-alsa-sink device=hw:0,0 channels=4
|
||||
load-module module-alsa-source device=hw:0,6 channels=4
|
||||
'';
|
||||
}
|
||||
7
lenovo/thinkpad/x1/7th-gen/default.nix
Normal file
7
lenovo/thinkpad/x1/7th-gen/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
../.
|
||||
../../../../common/pc/laptop/acpi_call.nix
|
||||
./audio.nix
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user