···4545 using <command>ifconfig</command>.</para>
4646 <para>To manually configure the network on the graphical installer,
4747 first disable network-manager with
4848- <command>systemctl stop network-manager</command>.</para></listitem>
4848+ <command>systemctl stop network-manager</command>.</para>
4949+ <para>To manually configure the wifi on the minimal installer, run
5050+ <command>wpa_supplicant -B -i interface -c <(wpa_passphrase 'SSID' 'key')</command>.</para></listitem>
5151+49525053 <listitem><para>If you would like to continue the installation from a different
5154 machine you need to activate the SSH daemon via <literal>systemctl start sshd</literal>.
+1-1
nixos/modules/config/shells-environment.nix
···3636 default = {};
3737 description = ''
3838 A set of environment variables used in the global environment.
3939- These variables will be set on shell initialisation.
3939+ These variables will be set on shell initialisation (e.g. in /etc/profile).
4040 The value of each variable can be either a string or a list of
4141 strings. The latter is concatenated, interspersed with colon
4242 characters.
+3-2
nixos/modules/programs/zsh/zsh.nix
···3636 shellAliases = mkOption {
3737 default = config.environment.shellAliases;
3838 description = ''
3939- Set of aliases for zsh shell. See <option>environment.shellAliases</option>
4040- for an option format description.
3939+ Set of aliases for zsh shell. Overrides the default value taken from
4040+ <option>environment.shellAliases</option>.
4141+ See <option>environment.shellAliases</option> for an option format description.
4142 '';
4243 type = types.attrs; # types.attrsOf types.stringOrPath;
4344 };