feat: cleaned up some stuff

This commit is contained in:
Nick 2025-02-18 21:06:45 -06:00
parent a5996792ce
commit b8c25f618e
11 changed files with 51 additions and 49 deletions

View file

@ -0,0 +1,24 @@
{ pkgs, ... }:
{
hardware = {
graphics = {
enable = true;
extraPackages = builtins.attrValues {
inherit (pkgs)
amdvlk
;
inherit (pkgs.rocmPackages.clr)
icd
;
};
extraPackages32 = builtins.attrValues {
inherit (pkgs.driversi686Linux)
amdvlk
;
};
};
};
boot.initrd.kernelModules = [
"amdgpu"
];
}