1
Fork 0
satellite/common/fonts.nix

29 lines
532 B
Nix
Raw Normal View History

2023-03-12 05:24:25 +01:00
{ pkgs, ... }: {
2023-05-24 03:17:09 +02:00
stylix.fonts = {
2023-12-10 12:55:54 +01:00
# monospace = {
# name = "Cascadia Code";
# package = pkgs.cascadia-code;
# };
2023-03-12 05:24:25 +01:00
monospace = {
2023-12-10 12:55:54 +01:00
name = "Iosevka";
package = pkgs.iosevka;
2023-03-12 05:24:25 +01:00
};
sansSerif = {
2023-12-10 12:55:54 +01:00
name = "CMUSansSerif";
package = pkgs.cm_unicode;
};
serif = {
name = "CMUSerif-Roman";
package = pkgs.cm_unicode;
2023-03-12 05:24:25 +01:00
};
# Why would you not want sansSerif
2023-12-10 12:55:54 +01:00
# (that's what I used to think, but I have since changed my mind)
2023-05-24 03:17:09 +02:00
# serif = sansSerif;
2023-03-12 05:24:25 +01:00
};
}