mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-19 16:40:32 +03:00

With networkmanager we can provide a much more welcoming network setup experience in the installer and it costs us less than 10 MB with this configuration on the minimal ISO. By default, for new profiles it will enable DHCP and RA and allow interactive reconfiguration through `nmtui` or `nmcli`. Especially the TUI interface is very easy to pick up and removes the need for typing in manual commands when setting up the WLAN connection.
15 lines
382 B
Nix
15 lines
382 B
Nix
# This module defines a small netboot environment.
|
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./netboot-base.nix
|
|
../../profiles/minimal.nix
|
|
];
|
|
|
|
documentation.man.enable = lib.mkOverride 500 true;
|
|
hardware.enableRedistributableFirmware = lib.mkOverride 70 false;
|
|
system.extraDependencies = lib.mkOverride 70 [ ];
|
|
networking.networkmanager.enable = lib.mkOverride 500 false;
|
|
}
|