1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-26 14:38:31 +02:00
nixos-hardware/apple/default.nix

14 lines
260 B
Nix

{ config, lib, ... }:
{
boot.kernelParams = [
"hid_apple.swap_opt_cmd=1"
"hid_apple.iso_layout=0"
];
hardware.facetimehd.enable = lib.mkDefault
(config.nixpkgs.config.allowUnfree or false);
services.mbpfan.enable = lib.mkDefault true;
}