1
Fork 0
satellite/common/fonts.nix

18 lines
384 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-03-12 05:24:25 +01:00
monospace = {
name = "FiraCode Nerd Font";
package = pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; };
};
sansSerif = {
name = "Fira Sans";
package = pkgs.fira;
};
# Why would you not want sansSerif
2023-05-24 03:17:09 +02:00
# (that's what I used to think, but I somewhat changed my mind)
# serif = sansSerif;
2023-03-12 05:24:25 +01:00
};
}