1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 23:48:33 +02:00
nixos-hardware/lenovo/thinkpad/x140e.nix

20 lines
362 B
Nix
Raw Normal View History

2016-08-05 11:48:33 +02:00
{ config, lib, pkgs, ... }:
{
imports = [ ./general.nix ];
2016-08-05 11:48:33 +02:00
boot = {
# wireless
kernelModules = [ "kvm-amd" "wl" ];
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
# audio device
extraModprobeConfig = ''
options snd_hda_intel enable=0,1
'';
};
# video card
services.xserver.videoDrivers = ["ati"];
}