···8484 </listitem>
8585 <listitem>
8686 <para>
8787- The linux_latest kernel was updated to the 5.12 series. It
8787+ The linux_latest kernel was updated to the 5.13 series. It
8888 currently is not officially supported for use with the zfs
8989 filesystem. If you use zfs, you should use a different kernel
9090 version (either the LTS kernel, or track a specific one).
+42-5
nixos/doc/manual/installation/installing.xml
···6464 </para>
65656666 <para>
6767- To manually configure the network on the graphical installer, first disable
6868- network-manager with <command>systemctl stop NetworkManager</command>.
6767+ On the graphical installer, you can configure the network, wifi included,
6868+ through NetworkManager. Using the <command>nmtui</command> program, you
6969+ can do so even in a non-graphical session. If you prefer to configure the
7070+ network manually, disable NetworkManager with
7171+ <command>systemctl stop NetworkManager</command>.
6972 </para>
70737174 <para>
7272- To manually configure the wifi on the minimal installer, run
7373- <command>wpa_supplicant -B -i interface -c <(wpa_passphrase 'SSID'
7474- 'key')</command>.
7575+ On the minimal installer, NetworkManager is not available, so configuration
7676+ must be perfomed manually. To configure the wifi, first start wpa_supplicant
7777+ with <command>sudo systemctl start wpa_supplicant</command>, then run
7878+ <command>wpa_cli</command>. For most home networks, you need to type
7979+ in the following commands:
8080+ <programlisting>
8181+<prompt>> </prompt>add_network
8282+0
8383+<prompt>> </prompt>set_network 0 ssid "myhomenetwork"
8484+OK
8585+<prompt>> </prompt>set_network 0 psk "mypassword"
8686+OK
8787+<prompt>> </prompt>set_network 0 key_mgmt WPA-PSK
8888+OK
8989+<prompt>> </prompt>enable_network 0
9090+OK
9191+ </programlisting>
9292+ For enterprise networks, for example <emphasis>eduroam</emphasis>, instead do:
9393+ <programlisting>
9494+<prompt>> </prompt>add_network
9595+0
9696+<prompt>> </prompt>set_network 0 ssid "eduroam"
9797+OK
9898+<prompt>> </prompt>set_network 0 identity "myname@example.com"
9999+OK
100100+<prompt>> </prompt>set_network 0 password "mypassword"
101101+OK
102102+<prompt>> </prompt>set_network 0 key_mgmt WPA-EAP
103103+OK
104104+<prompt>> </prompt>enable_network 0
105105+OK
106106+ </programlisting>
107107+ When successfully connected, you should see a line such as this one
108108+ <programlisting>
109109+<3>CTRL-EVENT-CONNECTED - Connection to 32:85:ab:ef:24:5c completed [id=0 id_str=]
110110+ </programlisting>
111111+ you can now leave <command>wpa_cli</command> by typing <command>quit</command>.
75112 </para>
7611377114 <para>
+1-1
nixos/doc/manual/release-notes/rl-2105.section.md
···30303131 - Python optimizations were disabled again. Builds with optimizations enabled are not reproducible. Optimizations can now be enabled with an option.
32323333-- The linux_latest kernel was updated to the 5.12 series. It currently is not officially supported for use with the zfs filesystem. If you use zfs, you should use a different kernel version (either the LTS kernel, or track a specific one).
3333+- The linux_latest kernel was updated to the 5.13 series. It currently is not officially supported for use with the zfs filesystem. If you use zfs, you should use a different kernel version (either the LTS kernel, or track a specific one).
34343535## New Services {#sec-release-21.05-new-services}
3636
+6
nixos/modules/profiles/installation-device.nix
···5454 An ssh daemon is running. You then must set a password
5555 for either "root" or "nixos" with `passwd` or add an ssh key
5656 to /home/nixos/.ssh/authorized_keys be able to login.
5757+5858+ If you need a wireless connection, type
5959+ `sudo systemctl start wpa_supplicant` and configure a
6060+ network using `wpa_cli`. See the NixOS manual for details.
5761 '' + optionalString config.services.xserver.enable ''
6262+5863 Type `sudo systemctl start display-manager' to
5964 start the graphical user interface.
6065 '';
···71767277 # Enable wpa_supplicant, but don't start it by default.
7378 networking.wireless.enable = mkDefault true;
7979+ networking.wireless.userControlled.enable = true;
7480 systemd.services.wpa_supplicant.wantedBy = mkOverride 50 [];
75817682 # Tell the Nix evaluator to garbage collect more aggressively.
···256256257257 gnFlags = mkGnFlags ({
258258 # Main build and toolchain settings:
259259+ # Create an official and optimized release build (only official builds
260260+ # should be distributed to users, as non-official builds are intended for
261261+ # development and may not be configured appropriately for production,
262262+ # e.g. unsafe developer builds have developer-friendly features that may
263263+ # weaken or disable security measures like sandboxing or ASLR):
259264 is_official_build = true;
265265+ # Build Chromium using the system toolchain (for Linux distributions):
260266 custom_toolchain = "//build/toolchain/linux/unbundle:default";
261267 host_toolchain = "//build/toolchain/linux/unbundle:default";
268268+ # Don't build against a sysroot image downloaded from Cloud Storage:
262269 use_sysroot = false;
270270+ # The default value is hardcoded instead of using pkg-config:
263271 system_wayland_scanner_path = "${wayland}/bin/wayland-scanner";
272272+ # Because we use a different toolchain / compiler version:
264273 treat_warnings_as_errors = false;
274274+ # We aren't compiling with Chrome's Clang (would enable Chrome-specific
275275+ # plugins for enforcing coding guidelines, etc.):
265276 clang_use_chrome_plugins = false;
277277+ # Disable symbols (they would negatively affect the performance of the
278278+ # build since the symbols are large and dealing with them is slow):
279279+ symbol_level = 0;
266280 blink_symbol_level = 0;
267267- symbol_level = 0;
268281269282 # Google API key, see: https://www.chromium.org/developers/how-tos/api-keys
270283 # Note: The API key is for NixOS/nixpkgs use ONLY.
···33let
4455 color-profiles = stdenv.mkDerivation {
66- name = "splix-color-profiles-20070625";
66+ pname = "splix-color-profiles";
77+ version = "unstable-2007-06-25";
7889 src = fetchurl {
910 url = "http://splix.ap2c.org/samsung_cms.tar.bz2";
···1718 };
18191920in stdenv.mkDerivation rec {
2020- name = "splix-svn-${rev}";
2121- rev = "315";
2121+ pname = "splix-svn";
2222+ version = "315";
22232324 src = fetchsvn {
2425 # We build this from svn, because splix hasn't been in released in several years
2526 # although the community has been adding some new printer models.
2627 url = "svn://svn.code.sf.net/p/splix/code/splix";
2727- inherit rev;
2828+ rev = version;
2829 sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl";
2930 };
3031