9 lines
161 B
Nix
9 lines
161 B
Nix
{ pkgs, ... }:
|
|
{
|
|
hardware.graphics.enable = true;
|
|
hardware.graphics.driSupport32Bit = true;
|
|
hardware.graphics.extraPackages = with pkgs; [
|
|
mesa
|
|
];
|
|
}
|