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

20 lines
369 B
Nix
Raw Normal View History

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