Compare commits

...

3 Commits

Author SHA1 Message Date
7d294ac8b1 add gentoo to desktop1
All checks were successful
nixos config pipeline / show-flake (push) Successful in 28s
nixos config pipeline / deploy (push) Successful in 46s
2025-10-05 10:54:51 +02:00
0f6af3cf48 add arch to desktop1 2025-10-03 16:41:23 +02:00
6e49715a28 remove os-prober 2025-10-03 11:18:08 +02:00
2 changed files with 17 additions and 1 deletions

View File

@ -50,4 +50,21 @@
system.stateVersion = "24.11"; 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,7 +19,6 @@ with lib;
boot.loader.systemd-boot.enable = false; boot.loader.systemd-boot.enable = false;
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = true; boot.loader.grub.efiSupport = true;
boot.loader.grub.useOSProber = true;
boot.loader.grub.device = "nodev"; boot.loader.grub.device = "nodev";
boot.loader.grub.efiInstallAsRemovable = config.smayzy.grub-on-lap.enable; boot.loader.grub.efiInstallAsRemovable = config.smayzy.grub-on-lap.enable;