Files
nixos-flake/opengl.nix
T

9 lines
110 B
Nix

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