This commit is contained in:
Frost-Phoenix 2024-06-23 16:33:59 +02:00
parent d0d2a3ad03
commit 27247998b6
2 changed files with 27 additions and 25 deletions

View file

@ -1,10 +1,12 @@
{ pkgs, ... }:
{
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
hardware.enableRedistributableFirmware = true;
hardware.opengl.extraPackages = with pkgs; [
hardware = {
graphics = {
enable = true;
extraPackages = with pkgs; [
];
];
};
};
hardware.enableRedistributableFirmware = true;
}