From 8b5d85e969ab1923d985f3d994b2eb15dd9413f2 Mon Sep 17 00:00:00 2001 From: fleaz Date: Thu, 25 Aug 2022 23:47:46 +0200 Subject: [PATCH] cray: full opengl support --- machines/cray/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machines/cray/configuration.nix b/machines/cray/configuration.nix index 351ee53..6ee78d9 100644 --- a/machines/cray/configuration.nix +++ b/machines/cray/configuration.nix @@ -21,6 +21,12 @@ services.printing.enable = true; services.printing.drivers = with pkgs; [ splix ]; + # AMD OpenGL Support + hardware.opengl.extraPackages = with pkgs; [ + rocm-opencl-icd + rocm-opencl-runtime + ]; + system.stateVersion = "21.11"; # Did you read the comment? }