mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
12 lines
225 B
Nix
12 lines
225 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
boot.kernelParams = [
|
|
"hid_apple.iso_layout=0"
|
|
];
|
|
|
|
hardware.facetimehd.enable = lib.mkDefault (config.nixpkgs.config.allowUnfree or false);
|
|
|
|
services.mbpfan.enable = lib.mkDefault true;
|
|
}
|