mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-12-24 10:39:44 +01:00
d977cf26de
There are several significant differences between ThinkPads and the other Lenovo models, so this structure must be more precise
8 lines
189 B
Nix
8 lines
189 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./general.nix ];
|
|
|
|
# modesetting driver leads to freezes with newer kernel at the moment (> 4.4)
|
|
services.xserver.videoDrivers = [ "intel" ];
|
|
}
|