fixed font

This commit is contained in:
Bryan Ramos 2025-07-06 09:52:29 -04:00
parent 6c4c116f18
commit 29a3723290
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 6 additions and 5 deletions

View file

@ -68,6 +68,7 @@
]; ];
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
terminus_font
nerd-fonts.terminess-ttf nerd-fonts.terminess-ttf
]; ];

View file

@ -54,22 +54,22 @@ in
font = { font = {
size = 12; size = 12;
normal = { normal = {
family = "Terminus"; family = "Terminess Nerd Font Mono";
style = "Regular"; style = "Regular";
}; };
bold = { bold = {
family = "Terminus"; family = "Terminess Nerd Font Mono";
style = "Bold"; style = "Bold";
}; };
italic = { italic = {
family = "Terminus"; family = "Terminess Nerd Font Mono";
style = "Italic"; style = "Italic";
}; };
bold_italic = { bold_italic = {
family = "Terminus"; family = "Terminess Nerd Font Mono";
style = "Bold Italic"; style = "Bold Italic";
}; };
}; };