1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00
nixos-hardware/dell/latitude/3480/default.nix

15 lines
277 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
{
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
# touchpad goes over i2c
boot.blacklistedKernelModules = [ "psmouse" ];
services.xserver.videoDrivers = lib.mkDefault [ "intel" ];
}