Files
old-nixos-dotfiles/system/hardware/opengl.nix

9 lines
155 B
Nix

{ pkgs, ... }:
{
hardware.opengl.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.opengl.extraPackages = with pkgs; [
mesa
];
}