refactor: adapt to cherry pick

This commit is contained in:
David 2024-05-19 16:39:49 +02:00
parent 6275988bab
commit eeb2377839
No known key found for this signature in database
GPG key ID: AB15A6AF1101390D
3 changed files with 0 additions and 12 deletions

View file

@ -13,7 +13,6 @@ in
../networkd.nix
../serial.nix
../restore-remote-access.nix
../no-grub.nix
];
options = {
system.kexec-installer.name = lib.mkOption {

View file

@ -6,7 +6,6 @@
../networkd.nix
../serial.nix
../restore-remote-access.nix
../no-grub.nix
];
# We are stateless, so just default to latest.

View file

@ -1,10 +0,0 @@
{lib, ...}:{
# when grub ends up being bloat: kexec & netboot
nixpkgs.overlays = [
(final: prev: {
# we don't need grub: save ~ 60MB
grub2 = prev.coreutils;
grub2_efi = prev.coreutils;
})
];
}