14 lines
203 B
Nix
14 lines
203 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
hardware.graphics.extraPackages = with pkgs; [
|
||
|
vpl-gpu-rt
|
||
|
intel-media-driver
|
||
|
intel-compute-runtime
|
||
|
];
|
||
|
|
||
|
services.xserver.videoDrivers = ["modesetting"];
|
||
|
}
|