Compare commits

..

No commits in common. "7d294ac8b1a0c9aa6674703e7295f7d9a64855a0" and "230315f0f6092d46e0fcd79565a5d47eab11e391" have entirely different histories.

2 changed files with 1 additions and 17 deletions

View File

@ -50,21 +50,4 @@
system.stateVersion = "24.11";
boot.loader.grub.extraEntries = ''
menuentry "Arch" {
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root f64bf53c-c989-4e38-9a97-aaadcb36d428
linux /boot/vmlinuz-linux root=UUID=f64bf53c-c989-4e38-9a97-aaadcb36d428
initrd /boot/initramfs-linux.img
}
menuentry "Gentoo" {
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root ad8fa502-d3dc-4999-abce-17a09a9cb779
linux /boot/vmlinuz-6.12.47-gentoo-dist root=UUID=ad8fa502-d3dc-4999-abce-17a09a9cb779
initrd /boot/initramfs-6.12.47-gentoo-dist.img
}
'';
}

View File

@ -19,6 +19,7 @@ with lib;
boot.loader.systemd-boot.enable = false;
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = true;
boot.loader.grub.useOSProber = true;
boot.loader.grub.device = "nodev";
boot.loader.grub.efiInstallAsRemovable = config.smayzy.grub-on-lap.enable;