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

21 lines
422 B
Nix
Raw Permalink Normal View History

2024-10-26 09:23:16 +00:00
{ pkgs, ... }: {
2024-10-18 07:16:37 +00:00
hardware = {
# OPENGL
2024-10-26 09:23:16 +00:00
graphics = { # GPU
2024-10-18 07:16:37 +00:00
enable = true;
enable32Bit = true;
2024-10-26 09:23:16 +00:00
extraPackages = with pkgs; [ amdvlk ];
extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
2024-10-18 07:16:37 +00:00
};
# BLUETOOTH
bluetooth = {
enable = true;
powerOnBoot = true;
};
2024-10-26 09:23:16 +00:00
2024-10-18 07:16:37 +00:00
xone.enable = true;
2024-10-26 09:23:16 +00:00
system76.enableAll = true;
firmware = [ pkgs.linux-firmware ];
2024-10-18 07:16:37 +00:00
};
}