1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 15:38:32 +02:00
nixos-hardware/lenovo/thinkpad/x230/default.nix

25 lines
367 B
Nix
Raw Normal View History

2017-12-26 22:54:10 +01: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
];
}