This commit is contained in:
Lilith 2025-03-24 02:29:46 +01:00
parent 9a16acca1b
commit 0deecc0aea
Signed by: lilith
GPG key ID: 8712A0F317C37175
6 changed files with 65 additions and 39 deletions

View file

@ -22,16 +22,19 @@
popups = 0.8;
};
fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
fonts = rec {
# serif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Serif";
# };
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
# sansSerif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Sans";
# };
serif = monospace;
sansSerif = monospace;
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;