mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
12 lines
218 B
Nix
12 lines
218 B
Nix
{ pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
extraPackages = with pkgs; [];
|
|
};
|
|
enableRedistributableFirmware = true;
|
|
};
|
|
}
|