Files
nix-config/systems/aarch64-linux/macbook-pro-nixos/boot.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

24 lines
462 B
Nix

{ lib, ... }:
{
# Use the systemd-boot EFI boot loader.
boot = {
loader = {
systemd-boot = {
enable = lib.mkForce true;
configurationLimit = 15;
consoleMode = lib.mkDefault "max";
};
efi.canTouchEfiVariables = lib.mkForce false;
};
kernelParams = [
"apple_dcp.show_notch=1"
];
extraModprobeConfig = ''
options hid_apple iso_layout=0
'';
m1n1CustomLogo = ./NixOS.png;
};
}