{ systemConfiguration = { isNormalUser = true; extraGroups = [ "wheel" "persist" ]; # Change this immediately after installation! initialPassword = "password123"; }; homeConfiguration = { config, lib, pkgs, ... }: { imports = [ ./programs.nix ]; home = { stateVersion = "18.09"; packages = [ pkgs.hello # pkgs.wezterm ]; }; }; }