bootloader: limine

This commit is contained in:
2026-06-12 15:10:42 +02:00
parent f56e535ff6
commit 59f5d84de0
2 changed files with 7 additions and 6 deletions
+7 -5
View File
@@ -4,13 +4,15 @@ _: {
pkgs,
...
}: {
# grub theme
boot.loader.grub = {
theme = inputs.nixos-grub-themes.packages.${pkgs.system}.nixos; # if you want to use nixos grub theme
# disable other bootloaders
boot.loader.systemd-boot.enable = false;
boot.loader.grub.enable = false;
boot.loader.limine = {
enable = true;
efiSupport = true;
};
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
};
}