diff options
| author | Baitinq <[email protected]> | 2022-06-18 16:08:50 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-18 16:08:50 +0200 |
| commit | 58727293cc2a91c7d1bb52ef461ae0af784dd721 (patch) | |
| tree | ff4e8589d59f11ecc9e0305de3dc7ea2b39d6253 /hosts/configuration.nix | |
| parent | Renamed custom.xwinwrapr package to custom.xwinwrap (diff) | |
| download | nixos-config-58727293cc2a91c7d1bb52ef461ae0af784dd721.tar.gz nixos-config-58727293cc2a91c7d1bb52ef461ae0af784dd721.tar.bz2 nixos-config-58727293cc2a91c7d1bb52ef461ae0af784dd721.zip | |
Added default password for user
Diffstat (limited to 'hosts/configuration.nix')
| -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 = { |