{ config, pkgs, lib, ...}: { users.users.boxuser = { isNormalUser = true; extraGroups = ["wheel" "docker" "networkmanager"]; # Enable ‘sudo’ for the user. password = "boxuser"; packages = with pkgs; [ fastfetch ]; }; }