Hello,

the following minimal system produces a warning:

--8<---------------cut here---------------start------------->8---
(use-modules (gnu)
             (gnu packages linux))

(operating-system
  (host-name "foo")
  (kernel linux-libre-lts)
  (bootloader (bootloader-configuration
                (bootloader grub-efi-removable-bootloader)
                (targets '("/boot/efi"))))
  (file-systems (cons* (file-system
                         (device (uuid "AAAA-0000" 'fat))
                         (mount-point "/")
                         (type "vfat"))
                       %base-file-systems)))
--8<---------------cut here---------------end--------------->8---

--8<---------------cut here---------------start------------->8---
$ guix system build config.scm 
guix system: warning: importing module (srfi srfi-26) from the host
[..]
--8<---------------cut here---------------end--------------->8---

What am I doing wrong?  Do I need to wrap the linux-libre-lts in some
procedure to contain the srfi-26?

Thanks,
Tomas

-- 
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.



Reply via email to