mirror of https://codeberg.org/hako/Rosenthal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
466 B
16 lines
466 B
1 year ago
|
;; SPDX-FileCopyrightText: 2023 Hilton Chain <hako@ultrarare.space>
|
||
|
;;
|
||
|
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
(define-module (rosenthal bootloader grub)
|
||
|
#:use-module (gnu bootloader)
|
||
|
#:use-module (gnu bootloader grub)
|
||
|
#:use-module (rosenthal packages bootloaders)
|
||
|
#:export (grub-efi-luks2-bootloader))
|
||
|
|
||
|
(define grub-efi-luks2-bootloader
|
||
|
(bootloader
|
||
|
(inherit grub-efi-bootloader)
|
||
|
(name 'grub-efi-luks2-bootloader)
|
||
|
(package grub-efi-luks2)))
|