mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 03:23:08 +01:00
16 lines
449 B
Nix
16 lines
449 B
Nix
{ pkgs, config, lib, gpuType, ... }:
|
|
|
|
lib.mkIf ("${gpuType}" == "amd") {
|
|
systemd.tmpfiles.rules = [
|
|
"L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}"
|
|
];
|
|
services.xserver.enable = true;
|
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
|
# OpenGL
|
|
hardware.opengl = {
|
|
## amdvlk: an open-source Vulkan driver from AMD
|
|
extraPackages = [ pkgs.amdvlk ];
|
|
extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];
|
|
};
|
|
}
|