From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCHES] Add wicd and wicd-service Date: Sun, 08 Mar 2015 22:04:55 -0400 Message-ID: <87sidfq62g.fsf@netris.org> References: <87mw4uhx1f.fsf@netris.org> <87386lb19f.fsf@netris.org> <87y4o3tfbs.fsf@netris.org> <3ee9868a9c9b84cf5dbc46333139767b@openmailbox.org> <85739998-D63C-4C31-BE1F-29751D096CC6@sumou.com> 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]:52915) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YUn3q-0005YJ-PL for guix-devel@gnu.org; Sun, 08 Mar 2015 22:04:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YUn3n-0003bo-JH for guix-devel@gnu.org; Sun, 08 Mar 2015 22:04:50 -0400 Received: from world.peace.net ([50.252.239.5]:36938) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YUn3n-0003aO-Es for guix-devel@gnu.org; Sun, 08 Mar 2015 22:04:47 -0400 In-Reply-To: <85739998-D63C-4C31-BE1F-29751D096CC6@sumou.com> (=?utf-8?B?IueZveeGiiIncw==?= message of "Mon, 09 Mar 2015 00:57:37 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: =?utf-8?B?55m954aK?= Cc: guix-devel@gnu.org =E7=99=BD=E7=86=8A writes: > On 2015=E5=B9=B42=E6=9C=8823=E6=97=A5 15:32:44 CET, Daniel Pimentel wrote: >>On 2015-02-12 10:44, Mark H Weaver wrote: >>> Daniel Pimentel writes: >>>=20 >>>> Guixs, I reconfigured my system with wicd. My config.scm (in >>>> /etc/config.scm): >>>> (use-modules (gnu)) >>>> (use-service-modules xorg networking dbus avahi) >>>> (use-package-modules avahi wicd) >>>> ... >>>> (service (cons* (slim-service) >>>> (wicd-service) >>>> (dbus-service (list wicd)) >>=20 >>It's works. I add my user to netdev group too. > > It doesn't (the config.scm) seem to be working for me.=20 > > When running `sudo guix system reconfigure /etc/sysconfig.scm' I get:=20 > > guix system: error: failed to load operating system file '/etc/sysconfig.= scm': > ERROR: no code for module (gnu packages wicd) > > This after a `guix pull'. > > What could be the problem? "guix pull" puts the updates in $HOME/.config/guix/latest, so it will only affect calls to 'guix' by the user who ran "guix pull". When you run 'guix' as some other user (root in this case), then it won't see those updates. So I guess you should run "sudo guix pull" and then try again. Mark