Merge remote-tracking branch 'refs/remotes/origin/master'

This commit is contained in:
Ahwx 2024-12-20 00:28:56 +01:00
commit 9b66f98eb7
22 changed files with 647 additions and 187 deletions

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
hardware = {
graphics = {
@ -7,5 +7,14 @@
# driSupport32Bit = true;
};
enableRedistributableFirmware = true;
opengl = {
extraPackages = with pkgs; [
amdvlk
];
# For 32 bit applications as well
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
};
};
}