aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-03-26 10:31:09 -0700
committerFranck Cuny <franck@fcuny.net>2023-03-26 10:31:09 -0700
commitfd63b122116ae2a0d016e8a6059f6c806b9cb0a5 (patch)
tree60a879d663c645e4292ae02a4b84da69865f650d /modules
parenthosts/tahoe: set a larger font for the TTYs (diff)
downloadinfra-fd63b122116ae2a0d016e8a6059f6c806b9cb0a5.tar.gz
modules/console: larger font for EVERYONE
Diffstat (limited to 'modules')
-rw-r--r--modules/system/console/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/system/console/default.nix b/modules/system/console/default.nix
index c9c24b0..b9ef762 100644
--- a/modules/system/console/default.nix
+++ b/modules/system/console/default.nix
@@ -1,6 +1,8 @@
{ ... }: {
console = {
- font = "Lat2-Terminus16";
+ earlySetup = true;
+ font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz";
+ packages = with pkgs; [ terminus_font ];
keyMap = "us";
};
}