{ config, pkgs, lib, ... }: { imports = [ ../quickly.nix ../installer/installer.nix ]; config = { users.users.nixos = { isNormalUser = true; password = "password123"; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. packages = with pkgs; [ tmux htop tree ]; }; }; }