mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
e228c7827b
In my experience, this makes keyboard behavior match letters printed on it both on EU and US keyboards.
12 lines
229 B
Nix
12 lines
229 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
boot.kernelParams = [
|
|
"hid_apple.iso_layout=0"
|
|
];
|
|
|
|
hardware.facetimehd.enable = lib.mkDefault
|
|
(config.nixpkgs.config.allowUnfree or false);
|
|
|
|
services.mbpfan.enable = lib.mkDefault true;
|
|
}
|