diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-03 22:58:24 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-03 22:58:24 +0200 |
commit | b64c94d4e91d118088f230b9c72efa78421056c2 (patch) | |
tree | c3d426a07b8089808f15749cdff5586ae5df9cd9 /hosts | |
parent | Add location in a per host approach (diff) | |
download | nixos-config-b64c94d4e91d118088f230b9c72efa78421056c2.tar.gz nixos-config-b64c94d4e91d118088f230b9c72efa78421056c2.tar.bz2 nixos-config-b64c94d4e91d118088f230b9c72efa78421056c2.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 = { |