nixos/modules/amd.nix
2023-01-23 22:51:41 -05:00

8 lines
141 B
Nix

{ pkgs, ... }:
{
boot.initrd.kernelModules = [ "amdgpu" ];
hardware.opengl = {
driSupport = true;
driSupport32Bit = true;
};
}