1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-14 16:53:39 +02:00
nixos-hardware/lenovo/thinkpad/x140e/default.nix

12 lines
191 B
Nix

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