From mboxrd@z Thu Jan 1 00:00:00 1970 From: mikadoZero Subject: bug#34897: System reconfigure error Date: Sun, 17 Mar 2019 17:04:02 -0400 Message-ID: References: <20190317204239.GA2757@jasmine.lan> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:45175) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5d6s-0001SJ-Gm for bug-guix@gnu.org; Sun, 17 Mar 2019 17:14:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h5cxu-00039I-34 for bug-guix@gnu.org; Sun, 17 Mar 2019 17:05:07 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34283) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h5cxq-00037V-RC for bug-guix@gnu.org; Sun, 17 Mar 2019 17:05:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h5cxq-0003fw-IY for bug-guix@gnu.org; Sun, 17 Mar 2019 17:05:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <20190317204239.GA2757@jasmine.lan> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 34897@debbugs.gnu.org Leo Famulari writes: > On Sun, Mar 17, 2019 at 04:11:49PM -0400, mikadoZero wrote: >> `guix describe` >> guix 19c0cdb >> repository URL: https://git.savannah.gnu.org/git/guix.git >> branch: master >> commit: 19c0cdb9e6271956015232421ef7f63a1ad001ae >> >> I get an error message when I do `guix system reconfigure config.scm`: > > Please share the contents of 'config.scm'. This is the contents of config.scm: (use-modules (gnu) (gnu system nss)) (use-service-modules networking ssh) (use-package-modules autotools certs emacs gettext graphviz man shells terminals texinfo) (operating-system (host-name "guix") (timezone "some-timezone") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda"))) (mapped-devices (list (mapped-device (source (uuid "some-uuid")) (target "root") (type luks-device-mapping)))) (file-systems (cons (file-system (device (file-system-label "root")) (mount-point "/") (type "ext4") (dependencies mapped-devices)) %base-file-systems)) (swap-devices '("/swapfile")) (users (cons* (user-account (name "root") (uid 0) (group "root") (home-directory "/root") (shell #~(string-append #$zsh "/bin/zsh"))) (user-account (name "guix") (group "users") (supplementary-groups '("wheel" "netdev" "audio")) (home-directory "/home/guix") (shell #~(string-append #$zsh "/bin/zsh"))) %base-user-accounts)) (packages (cons* ;; programs for contributing to guix autoconf automake gettext texinfo graphviz help2man nss-certs kmscon zsh emacs-no-x %base-packages)) (services (cons* (service dhcp-client-service-type) (service openssh-service-type (openssh-configuration (port-number 2222))) %base-services))) Note: some-timezone and some-uuid above are placeholders.