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