Files
nixos-flake/modules/hardware/opengl.nix
T
2026-01-18 10:04:50 +01:00

9 lines
110 B
Nix

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