graphics: use renamed graphics options (from opengl)

This commit is contained in:
Charlotte Van Petegem 2024-06-23 11:53:32 +02:00
parent 158a43cc72
commit c47d70a7a9
No known key found for this signature in database
GPG key ID: 019E764B7184435A
4 changed files with 21 additions and 17 deletions

View file

@ -68,13 +68,15 @@
hardware = {
cpu.intel.updateMicrocode = true;
enableRedistributableFirmware = true;
opengl.enable = true;
opengl.extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
intel-media-driver
];
graphics = {
enable = true;
extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
intel-media-driver
];
};
};
services.fstrim.enable = true;
}

View file

@ -63,13 +63,15 @@
hardware = {
cpu.intel.updateMicrocode = true;
enableRedistributableFirmware = true;
opengl.enable = true;
opengl.extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
intel-media-driver
];
graphics = {
enable = true;
extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
intel-media-driver
];
};
};
services.fstrim.enable = true;
}