about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2022-06-18 16:08:50 +0200
committerBaitinq <[email protected]>2022-06-18 16:08:50 +0200
commit58727293cc2a91c7d1bb52ef461ae0af784dd721 (patch)
treeff4e8589d59f11ecc9e0305de3dc7ea2b39d6253 /hosts
parentRenamed custom.xwinwrapr package to custom.xwinwrap (diff)
downloadnixos-config-58727293cc2a91c7d1bb52ef461ae0af784dd721.tar.gz
nixos-config-58727293cc2a91c7d1bb52ef461ae0af784dd721.tar.bz2
nixos-config-58727293cc2a91c7d1bb52ef461ae0af784dd721.zip
Added default password for user
Diffstat (limited to 'hosts')
-rw-r--r--hosts/configuration.nix2
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 = {