about summary refs log tree commit diff
path: root/modules/nixos-hardware/lenovo/thinkpad/x140e/default.nix
blob: c03410e936e214306569122711cef702f00e5599 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }:

{
  imports = [
    ../.
    ../../../common/cpu/amd
  ];

  boot.extraModprobeConfig = lib.mkDefault ''
    options snd_hda_intel enable=0,1
  '';

  services.xserver.videoDrivers = [ "ati" ];
}