nixos-hardware/apple/default.nix

13 lines
229 B
Nix
Raw Normal View History

{ config, lib, ... }:
2017-12-24 04:38:17 +01:00
{
boot.kernelParams = [
"hid_apple.iso_layout=0"
];
2017-12-25 02:51:02 +01:00
hardware.facetimehd.enable = lib.mkDefault
(config.nixpkgs.config.allowUnfree or false);
2017-12-24 04:38:17 +01:00
services.mbpfan.enable = lib.mkDefault true;
}