From 7338eb76f471e93f75f62dc8dddf0b70c3b20ee1 Mon Sep 17 00:00:00 2001 From: smayzy Date: Mon, 23 Jun 2025 13:07:52 +0200 Subject: [PATCH] add arch to bootloader --- configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configuration.nix b/configuration.nix index 12ea985..10afac4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -25,6 +25,15 @@ boot.loader.grub.device = "nodev"; boot.loader.efi.canTouchEfiVariables = true; + boot.loader.grub.extraEntries = '' + menuentry "Archlinux" { + insmod part_gpt + insmod fat + search --no-floppy --fs-uuid --set=root 07CA-4966 + chainloader /EFI/BOOT/BOOTX64.EFI + } + ''; + networking.hostName = "nixos"; networking.networkmanager.enable = true; time.timeZone = "Europe/Paris";