From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Raghav Gururajan" Subject: Re: Keeping just grub.cfg for a bootloader Date: Sun, 12 May 2019 09:19:23 +0000 Message-ID: <6aa8150643946007e24e2026467e2ef2@disroot.org> References: <87o9489aqo.fsf@orangeshoelaces.net> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:43612) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hPkdm-0002Ny-4Y for help-guix@gnu.org; Sun, 12 May 2019 05:19:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hPkdk-0004YI-W9 for help-guix@gnu.org; Sun, 12 May 2019 05:19:30 -0400 Received: from knopi.disroot.org ([178.21.23.139]:45910) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hPkdk-0004St-2b for help-guix@gnu.org; Sun, 12 May 2019 05:19:28 -0400 In-Reply-To: <87o9489aqo.fsf@orangeshoelaces.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Vasilii Kolobkov , help-guix@gnu.org > Hello fellow Guix folks!=0A> =0A> I'm planning a switch to a Guix syste= m and have a question i couldn't=0A> answer myself - is it possible to ke= ep just the grub.cfg instead of full=0A> GRUB install? I'd rather have GR= UB installed as a payload with Coreboot=0A> and maintain it's configurati= on with `guix system`, so that the whole=0A> disk could be encrypted.=0A>= =0A> I'd appreciate any tips!=0A=0AHello Vasilii!=0A=0AI had this very s= ame situation, as I am using libreboot which has grub payload. You can us= e the following code snippet for your "bootloader" part of your system co= nfiguration. =0A=0A (bootloader=0A (bootloader-configuration=0A (bootl= oader=0A (bootloader=0A (inherit grub-bootloader)=0A (installe= r #~(const #t))))))=0A=0AThis will generate and manage "grub.cfg" without= installing grub bootloader on your disk. Thanks to Guix Folk, Clement, w= ho helped me with that code.=0A=0ARegards,=0ARG.