From e3cfad0b9e263947ca89196aed36f4ebc6f82406 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 5 Feb 2022 22:37:26 +0100 Subject: [PATCH] nixos/users: Fix type error Fixes what seems to be a programming error that went undetected by me and @pasqui23 See https://github.com/NixOS/nixpkgs/issues/158279 --- nixos/modules/config/users-groups.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix index 23e1d39b594f..b0f96c754fa5 100644 --- a/nixos/modules/config/users-groups.nix +++ b/nixos/modules/config/users-groups.nix @@ -635,9 +635,9 @@ in { || cfg.passwordFile != null || cfg.openssh.authorizedKeys.keys != [] || cfg.openssh.authorizedKeys.keyFiles != []) - ) cfg.users) ++ [ + ) cfg.users ++ [ config.security.googleOsLogin.enable - ]; + ]); message = '' Neither the root account nor any wheel user has a password or SSH authorized key. You must set one to prevent being locked out of your system.