diff options
author | Franck Cuny <franck@fcuny.net> | 2023-03-26 10:28:07 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-03-26 10:28:07 -0700 |
commit | 91b2613e20fc57a939cc7504684ae33b46fee559 (patch) | |
tree | 1ed74300d8eb8b23b380980f2f5bf8e070c9123f | |
parent | modules/cgit: get rid of double quotes (diff) | |
download | world-91b2613e20fc57a939cc7504684ae33b46fee559.tar.gz |
hosts/tahoe: set a larger font for the TTYs
Diffstat (limited to '')
-rw-r--r-- | hosts/tahoe/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/tahoe/default.nix b/hosts/tahoe/default.nix index 64377b8..12f7688 100644 --- a/hosts/tahoe/default.nix +++ b/hosts/tahoe/default.nix @@ -10,6 +10,14 @@ isSystemUser = true; }; + # larger fonts for the TTYs + console = { + earlySetup = true; + font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz"; + packages = with pkgs; [ terminus_font ]; + keyMap = "us"; + }; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave |