summaryrefslogtreecommitdiff
path: root/hosts/toaster/amd.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2024-12-31 17:13:04 +0100
committerGrisha Shipunov2024-12-31 17:13:04 +0100
commit091b092b2eda01646a8eb7c7e6cdd7a304304928 (patch)
tree6c83c4dde9d5729ce02e120ef92434eb16b4211d /hosts/toaster/amd.nix
parent6fed8f89f75452cbd6ccd607cac16d5190e84990 (diff)
back to nix
Diffstat (limited to 'hosts/toaster/amd.nix')
-rw-r--r--hosts/toaster/amd.nix22
1 files changed, 10 insertions, 12 deletions
diff --git a/hosts/toaster/amd.nix b/hosts/toaster/amd.nix
index 07aa493..667fda1 100644
--- a/hosts/toaster/amd.nix
+++ b/hosts/toaster/amd.nix
@@ -1,16 +1,14 @@
{ pkgs, config, ... }: {
boot.initrd.kernelModules = [ "amdgpu" ];
- hardware.opengl = {
- driSupport = true;
- driSupport32Bit = true;
- extraPackages = with pkgs; [
- rocm-opencl-icd
- rocm-opencl-runtime
- amdvlk
- ];
- extraPackages32 = with pkgs; [
- driversi686Linux.amdvlk
- ];
- };
+ # hardware.graphics = {
+ # extraPackages = with pkgs; [
+ # rocm-opencl-icd
+ # rocm-opencl-runtime
+ # amdvlk
+ # ];
+ # extraPackages32 = with pkgs; [
+ # driversi686Linux.amdvlk
+ # ];
+ # };
}