Moved bootloader declaration to be computer independent

This commit is contained in:
Ryan Schanzenbacher 2024-07-02 21:46:16 -04:00
parent e05914abd5
commit d9cee2a73e
Signed by: ryan77627
GPG key ID: 81B0E222A3E2308E
3 changed files with 9 additions and 4 deletions

View file

@ -19,6 +19,10 @@
(device (uuid "4C53-D400"
'fat32))
(type "vfat")) %base-file-systems))
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))
(swap-devices
(list
(swap-space (target (uuid "6758bed3-9ff2-49a0-9cc3-7c48eaee6c4a"))))))

View file

@ -23,6 +23,10 @@
(device (uuid "DFE8-32EF"
'fat32))
(type "vfat")) %base-file-systems))
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout (keyboard-layout "us"))))
(swap-devices
(list
(swap-space (target (uuid "7e1bb7c5-da2a-4509-8263-f707fc752993"))))))

View file

@ -259,7 +259,4 @@
(type "tmpfs")
(check? #f))
%base-file-systems))
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))))
(bootloader "placeholder")))