15 lines
232 B
Nix
15 lines
232 B
Nix
{ pkgs, ... }: {
|
|
hardware.graphics = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [
|
|
# compute
|
|
intel-compute-runtime
|
|
intel-ocl
|
|
|
|
# encode/decode
|
|
vaapiIntel
|
|
intel-media-driver
|
|
];
|
|
};
|
|
}
|