diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/configuration.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index ae90b8b..bf4ca14 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -37,10 +37,12 @@ # Enable CUPS to print documents. # services.printing.enable = true; + users.mutableUsers = false; # Define a user account. Don't forget to set a password with ‘passwd’. users.users.baitinq = { isNormalUser = true; extraGroups = [ "wheel" "audio" "video" ]; # Enable ‘sudo’ for the user. + hashedPassword = secrets.baitinq_hashed_password; }; environment.variables = { |