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