Hello!
I'm newbie. After update system (guix pull) I see this error:

root@guix ~# guix system -n reconfigure /etc/CURRENT.scm
/etc/CURRENT.scm:37:24: error: you need these modules in the initrd for /dev/sdb2: sata_nv pata_acpi

BUT:
1. Prior to this (before upgrade) everything was OK
2. sata_nv and pata_acpi already selected in CURRENT.scm:

(operating-system
  (host-name "guix")
  (timezone "Europe/Moscow")
  (locale "en_US.utf8")
  (bootloader (bootloader-configuration
               (bootloader grub-bootloader)
               (target "/dev/sdd")))
  (initrd (lambda (file-systems . rest)
          (apply base-initrd file-systems
        #:extra-modules '("sata_nv" "pata_acpi")
        rest)))
  (file-systems (cons*
              (file-system
            (device "two")
             (mount-point "/")
             (type "ext4")
             (title 'label))
            (file-system
             (device "one")
             (mount-point "/home")
             (type "ext4")
             (title 'label))
             %base-file-systems))

I didn't find any answers in GuixSD documentation..