nixos/modules/boot/basic.nix
2023-06-09 21:09:52 +08:00

19 lines
335 B
Nix

{ efi, timeout ? 5 }: { pkgs, ... }@inputs:
{
config =
{
boot =
{
loader =
{
timeout = inputs.timeout;
systemd-boot.enable = true;
efi.canTouchEfiVariables = efi;
};
initrd.systemd.enable = true;
kernelPackages = inputs.pkgs.linuxPackages_xanmod_latest;
};
hardware.enableAllFirmware = true;
};
}