1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-26 14:38:31 +02:00
nixos-hardware/lenovo/thinkpad/x230/default.nix
2017-12-27 07:03:39 +01:00

25 lines
367 B
Nix

{ 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
];
}