nix/hosts/marvin/bootloader.nix
2022-05-08 15:57:08 -04:00

19 lines
432 B
Nix

{
pkgs,
lib,
...
}: {
boot = {
loader = {
systemd-boot.enable = true;
systemd-boot.configurationLimit = 5;
efi.canTouchEfiVariables = true;
# grub.enable = true;
# grub.device = "/dev/nvme0n1";
# grub.efiSupport = false;
# grub.configurationLimit = 5;
};
kernelPackages = pkgs.linuxPackages_latest;
supportedFilesystems = lib.mkForce ["btrfs" "vfat" "f2fs"];
};
}