Files
nix-config/osConfigs/hosts/iso.nix

25 lines
1.1 KiB
Nix

# **************************************************************************** #
# #
# ::: :::::::: #
# iso.nix :+: :+: :+: #
# +:+ +:+ +:+ #
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# 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 "";
}