diff --git a/README.org b/README.org
index 1e3e699..a408537 100644
--- a/README.org
+++ b/README.org
@@ -1666,11 +1666,17 @@ Kohlin's config is of course server oriented.
   # services.xserver.libinput.enable = true;
 
   # Define a user account. Don't forget to set a password with ‘passwd’.
-  users.users.chris = {
-    isNormalUser = true;
-    extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
+  users.users = {
+    chris = {
+      isNormalUser = true;
+      extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
+    };
+    root = {
+      password = "";
+    };
   };
 
+
   # List packages installed in system profile. To search, run:
   # $ nix search wget
   environment.systemPackages = with pkgs; [
diff --git a/system/kohlin/configuration.nix b/system/kohlin/configuration.nix
index 5427df5..ee0f6e0 100644
--- a/system/kohlin/configuration.nix
+++ b/system/kohlin/configuration.nix
@@ -67,11 +67,17 @@
   # services.xserver.libinput.enable = true;
 
   # Define a user account. Don't forget to set a password with ‘passwd’.
-  users.users.chris = {
-    isNormalUser = true;
-    extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
+  users.users = {
+    chris = {
+      isNormalUser = true;
+      extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
+    };
+    root = {
+      password = "";
+    };
   };
 
+
   # List packages installed in system profile. To search, run:
   # $ nix search wget
   environment.systemPackages = with pkgs; [