nixos-images/nix/no-bootloaders.nix
2024-05-19 14:28:51 +00:00

13 lines
330 B
Nix

{
# HACK: Drop this once, we have https://github.com/NixOS/nixpkgs/pull/312863 merged
# Both syslinux and grub also reference perl
nixpkgs.overlays = [
(final: prev: {
# we don't need grub: save ~ 60MB
grub2 = prev.coreutils;
grub2_efi = prev.coreutils;
syslinux = prev.coreutils;
})
];
}