From 9fe7c14b338544564c4513eb3a63635c431db34d Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sat, 18 Jun 2022 16:08:50 +0200 Subject: Added default password for user --- hosts/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'hosts') 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 = { -- cgit 1.4.1