diff options
| author | Baitinq <[email protected]> | 2022-07-03 22:58:24 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-03 22:58:24 +0200 |
| commit | 8b771f2597bc187a59f4085f45da0a5a4a2c7131 (patch) | |
| tree | 4782e81d2e04cb550e5f25b63b4f62e4eb81db36 /hosts | |
| parent | Add location in a per host approach (diff) | |
| download | nixos-config-8b771f2597bc187a59f4085f45da0a5a4a2c7131.tar.gz nixos-config-8b771f2597bc187a59f4085f45da0a5a4a2c7131.tar.bz2 nixos-config-8b771f2597bc187a59f4085f45da0a5a4a2c7131.zip | |
fmt
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 9b3cb8f..555998e 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -54,12 +54,12 @@ users.mutableUsers = false; - users.users.root.hashedPassword = secrets.root_hashed_password; + users.users.root.hashedPassword = secrets.root.hashed_password; # 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; + hashedPassword = secrets.baitinq.hashed_password; }; environment.variables = { |