.nix/system/hardware.nix

28 lines
381 B
Nix
Raw Normal View History

2024-07-23 19:12:34 +00:00
{ config, pkgs, ... }:
{
hardware = {
bluetooth = {
enable = true;
powerOnBoot = false;
};
graphics = {
extraPackages = with pkgs; [
amdvlk
rocmPackages.clr.icd
];
extraPackages32 = with pkgs.pkgsi686Linux; [
libva
];
# setLdLibraryPath = true;
};
pulseaudio.enable = false;
};
}