lavaridge: added radv and amdvulkan drivers

This commit is contained in:
Aly Raffauf 2024-04-07 22:11:39 -04:00
parent 07e1ef72e8
commit 1757bb6961

View file

@ -9,7 +9,7 @@
boot.initrd.availableKernelModules =
[ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.kernelModules = [ "kvm-amd" "amd-gpu" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
@ -24,6 +24,18 @@
swapDevices = [ ];
hardware.opengl = {
## radv: an open-source Vulkan driver from freedesktop
driSupport = true;
driSupport32Bit = true;
## amdvlk: an open-source Vulkan driver from AMD
extraPackages = [ pkgs.rocmPackages.clr.icd pkgs.amdvlk ];
extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];
};
services.xserver.videoDrivers = [ "amdgpu" ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction