18 lines
448 B
Nix
18 lines
448 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
# support power features such as suspend to ram
|
|
powerManagement.enable = true;
|
|
|
|
environment.variables = {
|
|
AMD_VULKAN_ICD = "RADV";
|
|
LIBVA_DRIVER_NAME= "radeonsi";
|
|
VDPAU_DRIVER = "radeonsi";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [ amdgpu_top ];
|
|
|
|
# fix audio issues: https://forums.linuxmint.com/viewtopic.php?t=445461
|
|
boot.extraModprobeConfig = ''
|
|
options snd_hda_intel model=generic
|
|
'';
|
|
}
|