1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
config,
lib,
pkgs,
...
}:
{
options.common.hardware.intelGraphics.enable = lib.mkEnableOption "intel gpu drivers";
config = lib.mkIf config.common.hardware.intelGraphics.enable {
boot.initrd.kernelModules = [ "i915" ];
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
vpl-gpu-rt
intel-media-driver
];
};
};
}