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

25 lines
367 B
Nix
Raw Normal View History

2017-12-26 16:54:10 -05:00
{ config, lib, pkgs, ... }:
with lib; {
imports = [
../.
../../../common/cpu/intel
];
boot = {
kernelModules = [
"acpi_call"
"tpm-rng"
];
extraModulePackages = with config.boot.kernelPackages; [
acpi_call
];
};
hardware.opengl.extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
];
}