Some checks failed
Flake Check Action / checker (push) Has been cancelled
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
19 lines
451 B
Nix
19 lines
451 B
Nix
{lib, ...}: {
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = lib.mkForce false;
|
|
sortKey = "nixos";
|
|
memtest86 = {
|
|
enable = true;
|
|
sortKey = "o_memtest86";
|
|
};
|
|
|
|
netbootxyz = {
|
|
enable = false;
|
|
sortKey = "o_netbootxyz";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|