From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matija Obid Subject: Re: guix fail to reconfigure the system Date: Wed, 25 Apr 2018 23:17:13 +0200 Message-ID: <87tvrzq946.fsf@gmx.com> References: <877eov2pqj.fsf@gmx.com> <87tvrzow3s.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42132) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fBRmy-0007PU-1U for help-guix@gnu.org; Wed, 25 Apr 2018 17:17:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fBRmu-0002Vf-Rz for help-guix@gnu.org; Wed, 25 Apr 2018 17:17:20 -0400 In-Reply-To: <87tvrzow3s.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Wed, 25 Apr 2018 22:43:35 +0200") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: help-guix@gnu.org ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Hello Maitja, > > Maitja Obid skribis: > >> I have freshly installed guixsd distribution. Afer running guix pull and >> system build i was trying to switch into newly built system with >> system reconfigure which gives me next error: >> >> root@hostname ~# guix system reconfigure /etc/config.scm >> guix system: error: stat: No such file or directory: "system" >> >> What can be wrong? > > No idea at first sight. Could you share your config.scm? > > Thanks, > Ludo=E2=80=99. Configuration: (use-modules (gnu) (gnu system nss) (gnu bootloader) (gnu bootloader grub) (gnu system file-systems) (guix packages) (guix git-download) (guix download) (guix build-system trivial) (gnu packages linux) (gnu packages emacs) (gnu packages firmware) (gnu packages certs) (gnu packages gnome)) (use-service-modules desktop) =20=20 (operating-system (host-name "X") (timezone "Europe/Ljubljana") (locale "en_US.utf8") =20=20 (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda"))) =20=20 (file-systems (cons (file-system (device "system") (mount-point "/") (type "ext4")) %base-file-systems)) =20=20 (swap-devices '("/dev/sda2")) =20=20 (users (cons (user-account (name "matija") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/matija")) %base-user-accounts)) =20=20 (packages (cons* emacs-exwm nss-certs ;for HTTPS access gvfs ;for user mounts %base-packages)) (services (cons* (gnome-desktop-service) (modify-services %desktop-services (guix-service-type config =3D> (guix-configuration (inherit config) (substitute-urls (list "https://berlin.guixsd.org"))= ))))) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) -- Matija