nixos-hardware/apple/default.nix

13 lines
229 B
Nix
Raw Permalink Normal View History

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