diff options
author | Franck Cuny <franck@fcuny.net> | 2023-03-26 10:31:09 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-03-26 10:31:09 -0700 |
commit | fd63b122116ae2a0d016e8a6059f6c806b9cb0a5 (patch) | |
tree | 60a879d663c645e4292ae02a4b84da69865f650d /modules | |
parent | hosts/tahoe: set a larger font for the TTYs (diff) | |
download | world-fd63b122116ae2a0d016e8a6059f6c806b9cb0a5.tar.gz |
modules/console: larger font for EVERYONE
Diffstat (limited to '')
-rw-r--r-- | modules/system/console/default.nix | 4 |
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"; }; } |