1
0
Fork 0
mirror of https://git.sr.ht/~azikx/karbur synced 2024-10-30 11:06:19 +00:00
karbur/host/system/hardware.nix
2024-10-18 16:16:37 +09:00

31 lines
619 B
Nix

{ config, lib, ... }: {
hardware = {
# AND VIDEOCARD DRIVE (maybe)
amdgpu = {
# opencl.enable = true;
amdvlk = {
enable = true;
supportExperimental.enable = true;
support32Bit.enable = true;
};
};
# OPENGL
graphics = {
enable = true;
enable32Bit = true;
};
# PROCCESOR
cpu.amd = {
updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
ryzen-smu.enable = true;
};
# BLUETOOTH
bluetooth = {
enable = true;
powerOnBoot = true;
};
xone.enable = true;
};
}