mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-04 18:19:40 +01:00
356ebeaaf7
The x1xx series relies on a AMD CPU, but all other (currently supported) ThinkPads use an Intel CPU, so `general-intel.nix` is responsible for all Intel defaults.
6 lines
111 B
Nix
6 lines
111 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot.kernelModules = mkDefault [ "kvm-intel" ];
|
|
services.xserver.videoDrivers = [ "intel" ];
|
|
}
|