9 lines
170 B
Nix
9 lines
170 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
hardware.facetimehd.enable = lib.mkDefault
|
|
(config.nixpkgs.config.allowUnfree or false);
|
|
|
|
services.mbpfan.enable = lib.mkDefault true;
|
|
}
|