nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 0575dc34c24d4c5a69dc5aa0e1a1e38e273315c7
parent 0b71192285051c5cd55b0d3dfcc8f77d2c881f36
Author: Toni Brown <me@tb148.net>
Date:   Thu, 30 Apr 2026 11:47:33 +0800

use limine as bootloader

Diffstat:
Mremote/boot/default.nix | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/remote/boot/default.nix b/remote/boot/default.nix @@ -1,8 +1,8 @@ {pkgs, ...}: { - boot.loader.grub.enable = true; - boot.loader.grub.efiSupport = true; - boot.loader.grub.efiInstallAsRemovable = true; - boot.loader.grub.device = "/dev/sda"; - boot.loader.grub.configurationLimit = 4; + boot.loader.limine.enable = true; + boot.loader.limine.efiInstallAsRemovable = true; + boot.loader.limine.biosSupport = true; + boot.loader.limine.biosDevice = "/dev/sda"; + boot.loader.limine.maxGenerations = 4; boot.kernelPackages = pkgs.linuxPackages_latest; }