nix-conf/system/dev/dn-lap/boot.nix
2024-12-24 10:44:37 +08:00

12 lines
253 B
Nix

{ config, pkgs, lib, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.extraModprobeConfig = ''
options hid_apple fnmode=2
'';
boot.initrd.systemd.enable = true;
boot.initrd.kernelModules = [ "i915" ];
boot.swraid.enable = true;
}