mirror of
https://git.sr.ht/~azikx/karbur
synced 2024-10-30 11:06:19 +00:00
31 lines
619 B
Nix
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;
|
|
};
|
|
}
|