nixos-hardware/lenovo/thinkpad/x140e/default.nix

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" ];
}