Skip to content

Commit

Permalink
Merge pull request #84476 from jakobrs/installation-cd-base-terminus
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Apr 29, 2020
2 parents 26d3ae2 + 34f242c commit b0196ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions nixos/doc/manual/installation/installing.xml
Expand Up @@ -41,6 +41,11 @@
neo</command>!)
</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">
<title>Networking in the installer</title>

Expand Down
5 changes: 4 additions & 1 deletion nixos/modules/installer/cd-dvd/installation-cd-base.nix
@@ -1,7 +1,7 @@
# This module contains the basic configuration for building a NixOS
# installation CD.

{ config, lib, pkgs, ... }:
{ config, lib, options, pkgs, ... }:

with lib;

Expand All @@ -15,6 +15,9 @@ with lib;
../../profiles/installation-device.nix
];

# Adds terminus_font for people with HiDPI displays
console.packages = options.console.packages.default ++ [ pkgs.terminus_font ];

# ISO naming.
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";

Expand Down

0 comments on commit b0196ca

Please sign in to comment.