1
Fork 0
satellite/common/fonts.nix

25 lines
459 B
Nix
Raw Permalink Normal View History

2024-08-26 17:38:47 +02:00
{ pkgs, ... }:
{
2023-05-24 03:17:09 +02:00
stylix.fonts = {
2024-02-24 01:53:32 +01:00
# monospace = { name = "Iosevka"; package = pkgs.iosevka; };
2024-08-26 17:38:47 +02:00
monospace = {
name = "Cascadia Code";
package = pkgs.cascadia-code;
};
sansSerif = {
name = "CMUSansSerif";
package = pkgs.cm_unicode;
};
serif = {
name = "CMUSerif-Roman";
package = pkgs.cm_unicode;
};
2023-03-12 05:24:25 +01:00
sizes = {
2024-08-30 01:10:41 +02:00
desktop = 15;
applications = 17;
2024-08-26 17:38:47 +02:00
terminal = 25;
};
2023-03-12 05:24:25 +01:00
};
}