mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 19:17:45 +00:00
Use Terminus for TTY font
This commit is contained in:
parent
e2bd45a7d5
commit
f309839b7e
1 changed files with 13 additions and 3 deletions
|
@ -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 ];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue