nix/hosts/marvin/bootloader.nix
2022-05-04 06:43:28 -04:00

19 lines
431 B
Nix

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