Files
old-nixos-dotfiles/system/hardware/opengl.nix
2024-09-27 00:50:59 +09:00

9 lines
157 B
Nix

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