* sudo guix system reconfigure /etc/config.scm
@ 2022-08-28 17:43 Gottfried
2022-08-28 18:29 ` Efraim Flashner
[not found] ` <Ywu1v11KeKqs6E5M@3900XT>
0 siblings, 2 replies; 5+ messages in thread
From: Gottfried @ 2022-08-28 17:43 UTC (permalink / raw)
To: help-guix
[-- Attachment #1.1.1: Type: text/plain, Size: 492 bytes --]
Hi Guixers,
after changing my config.scm the updating of it shows this message:
/etc/config.scm:49:6: Fehler: (targets (list "/boot/efi")
(keyboard-layout keyboard-layout)): invalid field specifier
"Fehler"(in english "mistake")
my config.scm:
(bootloader
(bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi")
(keyboard-layout keyboard-layout))))
There is a mistake somewhere?
But where?
Gottfried
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3191 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sudo guix system reconfigure /etc/config.scm
2022-08-28 17:43 sudo guix system reconfigure /etc/config.scm Gottfried
@ 2022-08-28 18:29 ` Efraim Flashner
[not found] ` <Ywu1v11KeKqs6E5M@3900XT>
1 sibling, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2022-08-28 18:29 UTC (permalink / raw)
To: Gottfried; +Cc: help-guix
[-- Attachment #1: Type: text/plain, Size: 1133 bytes --]
On Sun, Aug 28, 2022 at 05:43:21PM +0000, Gottfried wrote:
> Hi Guixers,
>
> after changing my config.scm the updating of it shows this message:
>
>
>
> /etc/config.scm:49:6: Fehler: (targets (list "/boot/efi") (keyboard-layout
> keyboard-layout)): invalid field specifier
>
> "Fehler"(in english "mistake")
>
>
> my config.scm:
>
> (bootloader
> (bootloader-configuration
> (bootloader grub-efi-bootloader)
> (targets (list "/boot/efi")
> (keyboard-layout keyboard-layout))))
>
> There is a mistake somewhere?
> But where?
>
> Gottfried
your parentheses are off. Based on what you have there the indentation
should be:
(bootloader
(bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi")
(keyboard-layout keyboard-layout))))
I hope that helps you see which parenthesis is in the wrong spot :)
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sudo guix system reconfigure /etc/config.scm
[not found] ` <Ywu1v11KeKqs6E5M@3900XT>
@ 2022-08-29 14:00 ` Gottfried
2022-08-29 14:30 ` Efraim Flashner
0 siblings, 1 reply; 5+ messages in thread
From: Gottfried @ 2022-08-29 14:00 UTC (permalink / raw)
To: Efraim Flashner, help-guix
[-- Attachment #1.1.1: Type: text/plain, Size: 1480 bytes --]
I got the same message after changing the parenthesis:
(bootloader
(bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi")
(keyboard-layout keyboard-layout))))
gfp@Tuxedo ~$ sudo guix system reconfigure /etc/config.scm
Passwort:
/etc/config.scm:49:6: Fehler: (targets (list "/boot/efi")
(keyboard-layout keyboard-layout)): invalid field specifier
What is wrong?
Gottfried
Am 28.08.22 um 20:36 schrieb Efraim Flashner:
> On Sun, Aug 28, 2022 at 05:43:21PM +0000, Gottfried wrote:
>> Hi Guixers,
>>
>> after changing my config.scm the updating of it shows this message:
>>
>>
>>
>> /etc/config.scm:49:6: Fehler: (targets (list "/boot/efi") (keyboard-layout
>> keyboard-layout)): invalid field specifier
>>
>> "Fehler"(in english "mistake")
>>
>>
>> my config.scm:
>>
>> (bootloader
>> (bootloader-configuration
>> (bootloader grub-efi-bootloader)
>> (targets (list "/boot/efi")
>> (keyboard-layout keyboard-layout))))
>>
>> There is a mistake somewhere?
>> But where?
>>
>> Gottfried
>
> your parentheses are off. Based on what you have there the indentation
> should be:
>
> (bootloader
> (bootloader-configuration
> (bootloader grub-efi-bootloader)
> (targets (list "/boot/efi")
> (keyboard-layout keyboard-layout))))
>
> I hope that helps you see which parenthesis is in the wrong spot :)
>
>
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3191 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sudo guix system reconfigure /etc/config.scm
2022-08-29 14:00 ` Gottfried
@ 2022-08-29 14:30 ` Efraim Flashner
2022-08-29 14:36 ` Gottfried
0 siblings, 1 reply; 5+ messages in thread
From: Efraim Flashner @ 2022-08-29 14:30 UTC (permalink / raw)
To: Gottfried; +Cc: help-guix
[-- Attachment #1: Type: text/plain, Size: 2101 bytes --]
On Mon, Aug 29, 2022 at 02:00:23PM +0000, Gottfried wrote:
> I got the same message after changing the parenthesis:
>
> (bootloader
> (bootloader-configuration
> (bootloader grub-efi-bootloader)
> (targets (list "/boot/efi")
> (keyboard-layout keyboard-layout))))
>
Try it like this:
(bootloader
(bootloader-configuration
(bootloader grub-efi-bootloader)
(targets (list "/boot/efi"))
(keyboard-layout keyboard-layout)))
>
> gfp@Tuxedo ~$ sudo guix system reconfigure /etc/config.scm
> Passwort:
> /etc/config.scm:49:6: Fehler: (targets (list "/boot/efi") (keyboard-layout
> keyboard-layout)): invalid field specifier
>
>
> What is wrong?
>
> Gottfried
>
>
>
> Am 28.08.22 um 20:36 schrieb Efraim Flashner:
> > On Sun, Aug 28, 2022 at 05:43:21PM +0000, Gottfried wrote:
> > > Hi Guixers,
> > >
> > > after changing my config.scm the updating of it shows this message:
> > >
> > >
> > >
> > > /etc/config.scm:49:6: Fehler: (targets (list "/boot/efi") (keyboard-layout
> > > keyboard-layout)): invalid field specifier
> > >
> > > "Fehler"(in english "mistake")
> > >
> > >
> > > my config.scm:
> > >
> > > (bootloader
> > > (bootloader-configuration
> > > (bootloader grub-efi-bootloader)
> > > (targets (list "/boot/efi")
> > > (keyboard-layout keyboard-layout))))
> > >
> > > There is a mistake somewhere?
> > > But where?
> > >
> > > Gottfried
> >
> > your parentheses are off. Based on what you have there the indentation
> > should be:
> >
> > (bootloader
> > (bootloader-configuration
> > (bootloader grub-efi-bootloader)
> > (targets (list "/boot/efi")
> > (keyboard-layout keyboard-layout))))
> >
> > I hope that helps you see which parenthesis is in the wrong spot :)
> >
> >
>
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: sudo guix system reconfigure /etc/config.scm
2022-08-29 14:30 ` Efraim Flashner
@ 2022-08-29 14:36 ` Gottfried
0 siblings, 0 replies; 5+ messages in thread
From: Gottfried @ 2022-08-29 14:36 UTC (permalink / raw)
To: Efraim Flashner, help-guix
[-- Attachment #1.1.1: Type: text/plain, Size: 2533 bytes --]
> Try it like this:
>>
>> (bootloader
>> (bootloader-configuration
>> (bootloader grub-efi-bootloader)
>> (targets (list "/boot/efi"))
>> (keyboard-layout keyboard-layout)))
Thanks very much,
it worked, I am happy
Gottfried
Am 29.08.22 um 16:30 schrieb Efraim Flashner:
> On Mon, Aug 29, 2022 at 02:00:23PM +0000, Gottfried wrote:
>> I got the same message after changing the parenthesis:
>>
>> (bootloader
>> (bootloader-configuration
>> (bootloader grub-efi-bootloader)
>> (targets (list "/boot/efi")
>> (keyboard-layout keyboard-layout))))
>>
>
> Try it like this:
>
> (bootloader
> (bootloader-configuration
> (bootloader grub-efi-bootloader)
> (targets (list "/boot/efi"))
> (keyboard-layout keyboard-layout)))
>
>>
>> gfp@Tuxedo ~$ sudo guix system reconfigure /etc/config.scm
>> Passwort:
>> /etc/config.scm:49:6: Fehler: (targets (list "/boot/efi") (keyboard-layout
>> keyboard-layout)): invalid field specifier
>>
>>
>> What is wrong?
>>
>> Gottfried
>>
>>
>>
>> Am 28.08.22 um 20:36 schrieb Efraim Flashner:
>>> On Sun, Aug 28, 2022 at 05:43:21PM +0000, Gottfried wrote:
>>>> Hi Guixers,
>>>>
>>>> after changing my config.scm the updating of it shows this message:
>>>>
>>>>
>>>>
>>>> /etc/config.scm:49:6: Fehler: (targets (list "/boot/efi") (keyboard-layout
>>>> keyboard-layout)): invalid field specifier
>>>>
>>>> "Fehler"(in english "mistake")
>>>>
>>>>
>>>> my config.scm:
>>>>
>>>> (bootloader
>>>> (bootloader-configuration
>>>> (bootloader grub-efi-bootloader)
>>>> (targets (list "/boot/efi")
>>>> (keyboard-layout keyboard-layout))))
>>>>
>>>> There is a mistake somewhere?
>>>> But where?
>>>>
>>>> Gottfried
>>>
>>> your parentheses are off. Based on what you have there the indentation
>>> should be:
>>>
>>> (bootloader
>>> (bootloader-configuration
>>> (bootloader grub-efi-bootloader)
>>> (targets (list "/boot/efi")
>>> (keyboard-layout keyboard-layout))))
>>>
>>> I hope that helps you see which parenthesis is in the wrong spot :)
>>>
>>>
>>
>
>
>
>
>
>
--
() ascii ribbon campaign - against html e-mail
/\ www.asciiribbon.org - against proprietary attachments
Why is HTML email a security nightmare? See https://useplaintext.email/
Please avoid sending me MS-Office attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3191 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-08-29 14:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-28 17:43 sudo guix system reconfigure /etc/config.scm Gottfried
2022-08-28 18:29 ` Efraim Flashner
[not found] ` <Ywu1v11KeKqs6E5M@3900XT>
2022-08-29 14:00 ` Gottfried
2022-08-29 14:30 ` Efraim Flashner
2022-08-29 14:36 ` Gottfried
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).