# **************************************************************************** # # # # ::: :::::::: # # iso.nix :+: :+: :+: # # +:+ +:+ +:+ # # By: tomoron +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2025/09/06 00:57:02 by tomoron #+# #+# # # Updated: 2026/06/14 18:25:39 by tomoron ### ########.fr # # # # **************************************************************************** # {lib, ... }: { users.users.tom = { isNormalUser = true; extraGroups = [ "wheel" "networkmanager" "video" ]; initialHashedPassword = ""; }; services.getty.autologinUser = lib.mkForce "tom"; services.getty.helpLine = lib.mkForce ""; }