From 9fc63347146d0b9edf6bac07541879148ab72bc4 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 21 Nov 2022 11:19:04 -0600 Subject: [PATCH] adding a temporary empty pass for root to fix machine --- README.org | 12 +++++++++--- system/kohlin/configuration.nix | 12 +++++++++--- 2 files changed, 18 insertions(+), 6 deletions(-) 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; [