mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
8 lines
141 B
Nix
8 lines
141 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
hardware.opengl = {
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
}
|