reNixos/s0meMiniPC-nix/boot/loader/systemd-boot.nix
s0me1newithhand7s 7e7e611e52
Some checks failed
Flake Check Action / checker (push) Has been cancelled
fmt: alejandra
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-08-25 00:22:18 +03:00

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";
};
};
};
};
}