8 lines
140 B
Nix
8 lines
140 B
Nix
{ pkgs, ... }: {
|
|
imports = [ ./common.nix ];
|
|
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
intel-media-driver
|
|
vaapiIntel
|
|
];
|
|
}
|