1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Use Terminus for TTY font

This commit is contained in:
RGBCube 2023-05-22 21:58:50 +03:00
parent e2bd45a7d5
commit f309839b7e
No known key found for this signature in database

View file

@ -1,9 +1,19 @@
{ pkgs, systemFonts, ... }:
{ pkgs, systemConfiguration, systemFonts, ... }:
with pkgs; systemFonts [
(with pkgs; systemFonts [
(nerdfonts.override {
fonts = [
"JetBrainsMono"
];
})
]
])
//
(systemConfiguration {
console = {
earlySetup = true;
font = "Lat2-Terminus16";
packages = [ pkgs.terminus ];
};
})