mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
system: hurd: Fix bogus 'initrd-modules' field.
Reported by kitzman on #guix. * gnu/system/hurd.scm (%hurd-default-operating-system)[initrd-modules]: Set to the empty list.
This commit is contained in:
parent
20691c70cf
commit
df473496ed
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ (define %hurd-default-operating-system
|
||||||
(bootloader grub-minimal-bootloader)
|
(bootloader grub-minimal-bootloader)
|
||||||
(targets '("/dev/vda"))))
|
(targets '("/dev/vda"))))
|
||||||
(initrd #f)
|
(initrd #f)
|
||||||
(initrd-modules (lambda _ '()))
|
(initrd-modules '())
|
||||||
(firmware '())
|
(firmware '())
|
||||||
(host-name "guixygnu")
|
(host-name "guixygnu")
|
||||||
(file-systems '())
|
(file-systems '())
|
||||||
|
|
Loading…
Reference in a new issue