.nix/system/hardware.nix
2024-07-23 21:12:34 +02:00

27 lines
381 B
Nix

{ 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;
};
}