This commit is contained in:
Lilith 2025-06-26 16:58:58 +02:00
parent 0b0a14fe2c
commit cd44fa3afc
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
6 changed files with 57 additions and 23 deletions

View file

@ -23,16 +23,6 @@
};
fonts = rec {
# serif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Serif";
# };
# sansSerif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Sans";
# };
serif = monospace;
sansSerif = monospace;
@ -42,7 +32,7 @@
};
emoji = {
package = pkgs.twitter-color-emoji;
package = pkgs.twemoji-color-font;
name = "Twemoji";
};
@ -52,6 +42,7 @@
popups = 12;
terminal = 14;
};
};
cursor = {
@ -60,5 +51,11 @@
size = 10;
};
};
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
source-han-sans
twemoji-color-font
];
};
}