nixos-config/system/hardware/opengl.nix

10 lines
141 B
Nix
Raw Permalink Normal View History

2024-04-01 23:11:51 +05:30
{ pkgs, ... }:
{
# OpenGL
hardware.opengl.enable = true;
2024-04-01 23:11:51 +05:30
hardware.opengl.extraPackages = with pkgs; [
rocmPackages.clr.icd
];
}