1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00
nixos-hardware/lenovo/thinkpad/x140e/default.nix
2022-12-31 11:57:44 +01:00

15 lines
211 B
Nix

{ lib, ... }:
{
imports = [
../.
../../../common/cpu/amd
];
boot.extraModprobeConfig = lib.mkDefault ''
options snd_hda_intel enable=0,1
'';
services.xserver.videoDrivers = [ "ati" ];
}