nixos/modules/boot/basic.nix

19 lines
309 B
Nix
Raw Normal View History

2023-06-09 16:06:02 +08:00
{ efi }: { pkgs, ... }@inputs:
2023-06-05 21:53:13 +08:00
{
config =
{
boot =
{
loader =
{
timeout = 5;
systemd-boot.enable = true;
efi.canTouchEfiVariables = efi;
};
initrd.systemd.enable = true;
kernelPackages = inputs.pkgs.linuxPackages_xanmod_latest;
};
hardware.enableAllFirmware = true;
};
}