mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 00:37:14 +08:00
21 lines
435 B
Nix
21 lines
435 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
services = {
|
|
fwupd.enable = lib.mkDefault true;
|
|
thermald.enable = lib.mkDefault true;
|
|
};
|
|
|
|
boot = {
|
|
# needs to be explicitly loaded or else bluetooth/wifi won't work
|
|
kernelModules = [ "kvm-intel" "wl" ];
|
|
extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
};
|
|
}
|