From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jone Subject: Simple reconfigure Date: Fri, 27 Apr 2018 15:38:14 +0000 Message-ID: <87tvrwbqxl.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46256) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fC2dg-0006I7-Gd for help-guix@gnu.org; Fri, 27 Apr 2018 08:38:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fC2db-0000nG-Ii for help-guix@gnu.org; Fri, 27 Apr 2018 08:38:12 -0400 Received: from mail-lf0-x233.google.com ([2a00:1450:4010:c07::233]:46193) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fC2db-0000mm-BD for help-guix@gnu.org; Fri, 27 Apr 2018 08:38:07 -0400 Received: by mail-lf0-x233.google.com with SMTP id v85-v6so2448089lfa.13 for ; Fri, 27 Apr 2018 05:38:06 -0700 (PDT) Received: from guix ([93.100.210.215]) by smtp.gmail.com with ESMTPSA id g79-v6sm248837lfl.29.2018.04.27.05.38.04 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 27 Apr 2018 05:38:04 -0700 (PDT) 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: help-guix@gnu.org Hello! If I make little changes, like such: was: (users (cons (user-account (name "jone") (comment "Jone") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/jone")) %base-user-accounts)) now: (users (cons (user-account (name "jone") (comment "Jone") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/jone")) (user-account (name "guest") (comment "Guest") (password "guest" "something") (group "users") (supplementary-groups '("netdev" "audio" "video")) (home-directory "/home/guest")) %base-user-accounts)) as will be correct: just run 'guix system reconfigure' without options, or .. ? Can Guix only update configuration files, offline?