commit
931a0b8be8
|
@ -45,7 +45,10 @@ for a UEFI installation is by and large the same as a BIOS installation. The dif
|
||||||
using <command>ifconfig</command>.</para>
|
using <command>ifconfig</command>.</para>
|
||||||
<para>To manually configure the network on the graphical installer,
|
<para>To manually configure the network on the graphical installer,
|
||||||
first disable network-manager with
|
first disable network-manager with
|
||||||
<command>systemctl stop network-manager</command>.</para></listitem>
|
<command>systemctl stop network-manager</command>.</para>
|
||||||
|
<para>To manually configure the wifi on the minimal installer, run
|
||||||
|
<command>wpa_supplicant -B -i interface -c <(wpa_passphrase 'SSID' 'key')</command>.</para></listitem>
|
||||||
|
|
||||||
|
|
||||||
<listitem><para>If you would like to continue the installation from a different
|
<listitem><para>If you would like to continue the installation from a different
|
||||||
machine you need to activate the SSH daemon via <literal>systemctl start sshd</literal>.
|
machine you need to activate the SSH daemon via <literal>systemctl start sshd</literal>.
|
||||||
|
|
|
@ -36,7 +36,7 @@ in
|
||||||
default = {};
|
default = {};
|
||||||
description = ''
|
description = ''
|
||||||
A set of environment variables used in the global environment.
|
A set of environment variables used in the global environment.
|
||||||
These variables will be set on shell initialisation.
|
These variables will be set on shell initialisation (e.g. in /etc/profile).
|
||||||
The value of each variable can be either a string or a list of
|
The value of each variable can be either a string or a list of
|
||||||
strings. The latter is concatenated, interspersed with colon
|
strings. The latter is concatenated, interspersed with colon
|
||||||
characters.
|
characters.
|
||||||
|
|
|
@ -36,8 +36,9 @@ in
|
||||||
shellAliases = mkOption {
|
shellAliases = mkOption {
|
||||||
default = config.environment.shellAliases;
|
default = config.environment.shellAliases;
|
||||||
description = ''
|
description = ''
|
||||||
Set of aliases for zsh shell. See <option>environment.shellAliases</option>
|
Set of aliases for zsh shell. Overrides the default value taken from
|
||||||
for an option format description.
|
<option>environment.shellAliases</option>.
|
||||||
|
See <option>environment.shellAliases</option> for an option format description.
|
||||||
'';
|
'';
|
||||||
type = types.attrs; # types.attrsOf types.stringOrPath;
|
type = types.attrs; # types.attrsOf types.stringOrPath;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue