Files
nixos-config/system/core/limine.nix
T
jory c5f771bd53
CI / Formatting check (x86_64-linux) (push) Has been cancelled
CI / Flake check (aarch64-linux) (push) Has been cancelled
CI / Flake check (x86_64-linux) (push) Has been cancelled
CI / Formatting check (aarch64-linux) (push) Has been cancelled
Added hetzner server configs
2026-07-11 20:28:51 +02:00

22 lines
408 B
Nix

{
lib,
pkgs,
...
}: {
boot.loader = {
limine = {
enable = true;
efiSupport = true;
biosSupport = true;
biosDevice = "/dev/nvme1n1";
maxGenerations = 10;
style.wallpapers = [
pkgs.nixos-artwork.wallpapers.simple-dark-gray-bootloader.gnomeFilePath
];
};
grub.enable = lib.mkForce false;
systemd-boot.enable = lib.mkForce false;
};
}