Files
old-nixos-dotfiles/system/hardware/opengl.nix
2024-08-13 22:36:15 +09:00

8 lines
117 B
Nix

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