1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 02:23:33 +02:00
nixos-hardware/lenovo/thinkpad/x140e/default.nix
2017-12-24 23:21:05 +00:00

15 lines
225 B
Nix

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