feat: add terminess nerd font to system and home
This commit is contained in:
parent
03857e4556
commit
5c630e7dca
5 changed files with 25 additions and 5 deletions
11
users/rafiq/modules/fonts.nix
Normal file
11
users/rafiq/modules/fonts.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
fonts = {
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
defaultFonts.emoji = [ "terminus" ];
|
||||
defaultFonts.monospace = [ "terminus" ];
|
||||
defaultFonts.sansSerif = [ "terminus" ];
|
||||
defaultFonts.serif = [ "terminus" ];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,11 +1,10 @@
|
|||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
# font = {
|
||||
# name = "";
|
||||
# package = ?;
|
||||
# size = 32;
|
||||
# };
|
||||
font = {
|
||||
name = "Terminess Nerd Font Mono";
|
||||
size = 16;
|
||||
};
|
||||
keybindings = {
|
||||
"ctrl+equal" = "change_font_size current +2.0";
|
||||
"ctrl+minus" = "change_font_size current -2.0";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue