Hi
I'm running guix from source in guixsd.
sdb@antelope ~/src/guix$ ./pre-inst-env guix describe
Git checkout:
repository: /home/sdb/src/guix
branch: master
commit: 3d53869e302540cb9a80cdcbbabea2b67200c0c5
This is the output of my config. (it is attached). My config does NOT
have ci.guix.info
sdb@antelope ~/src/guix$ ./pre-inst-env guix weather -m
~/config/os-manifest.scm
computing 414 package derivations for i686-linux...
looking for 588 store items on https://ci.guix.info...
updating substitutes from 'https://ci.guix.info'... 100.0%
https://ci.guix.info
98.3% substitutes available (578 out of 588)
567.3 MiB of nars (compressed)
2,141.8 MiB on disk (uncompressed)
0.013 seconds per request (7.4 seconds in total)
79.2 requests per second
'https://ci.guix.info/api/queue?nr=1000' returned 502 ("Bad Gateway")
^ could we hide this error if it does not matter for the results?
Forcing the --substitute-urls gives:
sdb@antelope ~/src/guix$ ./pre-inst-env guix weather -m
~/config/os-manifest.scm --substitute-urls="http://berlin.guixsd.org"
computing 414 package derivations for i686-linux...
looking for 588 store items on http://berlin.guixsd.org...
updating substitutes from 'http://berlin.guixsd.org'... 100.0%
http://berlin.guixsd.org
98.3% substitutes available (578 out of 588)
567.3 MiB of nars (compressed)
2,141.8 MiB on disk (uncompressed)
0.044 seconds per request (25.7 seconds in total)
22.9 requests per second
'http://berlin.guixsd.org/api/queue?nr=1000' returned 502 ("Bad
Gateway")
--
Cheers
Swedebugia
;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce where the
;; root partition is encrypted with LUKS.
;; (use-modules (gnu) (gnu system nss))
;; (use-service-modules desktop networking)
;; (use-package-modules certs gnome)
;; (operating-system
;; (host-name "antelope")
;; (timezone "Europe/Paris")
;; (locale "en_US.utf8")
;; ;; Use the UEFI variant of GRUB with the EFI System
;; ;; Partition mounted on /boot/efi.
;; (bootloader (bootloader-configuration
;; (bootloader grub-bootloader)
;; (target "/dev/sda")))
;; (file-systems (cons (file-system
;; (device (file-system-label "my-root"))
;; (mount-point "/")
;; (type "ext4"))
;; %base-file-systems))
;; (swap-devices '("/dev/sda2"))
;; (users (cons (user-account
;; (name "sdb")
;; (comment "Alice's brother")
;; (group "users")
;; (supplementary-groups '("wheel" "netdev"
;; "audio" "video"))
;; (home-directory "/home/sdb"))
;; %base-user-accounts))
;; ;; This is where we specify system-wide packages.
;; (packages (cons* nss-certs ;for HTTPS access
;; gvfs ;for user mounts
;; gnome-shell-extensions
;; %base-packages))
;; ;; Add GNOME and/or Xfce---we can choose at the log-in
;; ;; screen with F1. Use the "desktop" services, which
;; ;; include the X11 log-in service, networking with
;; ;; NetworkManager, and more.
;; (services (cons* (gnome-desktop-service)
;; ;;(xfce-desktop-service)
;; (console-keymap-service "se-latin1")
;; (modify-services %desktop-services ; Add berlin as
first priority
;; ; substitute
server
;; (guix-service-type config =>
;; (guix-configuration
;; (inherit config)
;; (substitute-urls '(
;;
"https://berlin.guixsd.org https://mirror.hydra.gnu.org"))))
;; (network-manager-service-type config =>
;;
(network-manager-configuration
;; (inherit
config)
;; (vpn-plugins
;;
'(openvpn)))))))
;; ;; Allow resolution of '.local' host names with mDNS.
;; (name-service-switch %mdns-host-lookup-nss))
(specifications->manifest
'(
"gnome"
"gnome-shell-extensions"
"gvfs"
"nss-certs"
"network-manager-openvpn"
))