1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 05:17:22 +02:00
nixos-hardware/apple/imac/14-2/default.nix

38 lines
662 B
Nix
Raw Normal View History

2024-08-26 13:09:14 +02:00
{
config,
lib,
pkgs,
...
}:
{
imports = [
../.
../../../common/gpu/intel
../../../common/gpu/nvidia
../../../common/hidpi.nix
];
boot = {
initrd.kernelModules = [
"applesmc"
"applespi"
"intel_lpss_pci"
"spi_pxa2xx_platform"
"kvm-intel"
];
blacklistedKernelModules = [
"b43"
"ssb"
"brcmfmac"
"brcmsmac"
"bcma"
];
kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.0") pkgs.linuxPackages_latest;
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
};
hardware = {
bluetooth.enable = lib.mkDefault true;
};
}