diff --git a/base-config.nix b/base-config.nix index cfb43ad..78175f4 100644 --- a/base-config.nix +++ b/base-config.nix @@ -83,6 +83,11 @@ # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; + # Disable mutableUsers. By doing this you can no longer use useradd or groupadd + # for user management. All users are now declarative. If a user needs to be able + # to login make sure you set hashedPassword on users.users. using mkpasswd. + users.mutableUsers = false; + # Define a user account. Don't forget to set a password with 'passwd'. users.users.wesley = { isNormalUser = true;