Merge pull request #84476 from jakobrs/installation-cd-base-terminus
This commit is contained in:
commit
b0196cacec
|
@ -41,6 +41,11 @@
|
||||||
neo</command>!)
|
neo</command>!)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
If the text is too small to be legible, try <command>setfont ter-132n</command>
|
||||||
|
to increase the font size.
|
||||||
|
</para>
|
||||||
|
|
||||||
<section xml:id="sec-installation-booting-networking">
|
<section xml:id="sec-installation-booting-networking">
|
||||||
<title>Networking in the installer</title>
|
<title>Networking in the installer</title>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# This module contains the basic configuration for building a NixOS
|
# This module contains the basic configuration for building a NixOS
|
||||||
# installation CD.
|
# installation CD.
|
||||||
|
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, options, pkgs, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
|
@ -15,6 +15,9 @@ with lib;
|
||||||
../../profiles/installation-device.nix
|
../../profiles/installation-device.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Adds terminus_font for people with HiDPI displays
|
||||||
|
console.packages = options.console.packages.default ++ [ pkgs.terminus_font ];
|
||||||
|
|
||||||
# ISO naming.
|
# ISO naming.
|
||||||
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
|
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue