From 646c2e4dec62d1fca120e68a9772b28e7e89ecc5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 12 Nov 2007 14:59:23 +0000 Subject: [PATCH] * Put user "root" in the group "root". svn path=/nixos/trunk/; revision=9654 --- system/users-groups.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/system/users-groups.nix b/system/users-groups.nix index ebbc308c4f02..b156ac5591ec 100644 --- a/system/users-groups.nix +++ b/system/users-groups.nix @@ -16,6 +16,7 @@ rec { description = "System administrator"; home = "/root"; shell = defaultShell; + group = "root"; } { name = "nobody"; uid = ids.uids.nobody;