mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
cover more fonts
This commit is contained in:
parent
cd58a6960c
commit
c30b9b9fa0
1 changed files with 37 additions and 7 deletions
|
|
@ -1,17 +1,47 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
fonts = {
|
fonts = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
font-awesome
|
# Emoji and general symbols
|
||||||
nerd-fonts.noto
|
noto-fonts
|
||||||
nerd-fonts.hack
|
noto-fonts-cjk-sans
|
||||||
|
noto-fonts-emoji
|
||||||
|
noto-fonts-extra
|
||||||
|
unifont
|
||||||
|
|
||||||
|
# Nerd fonts
|
||||||
nerd-fonts.jetbrains-mono
|
nerd-fonts.jetbrains-mono
|
||||||
|
nerd-fonts.hack
|
||||||
|
nerd-fonts.fira-code
|
||||||
|
nerd-fonts.noto
|
||||||
|
nerd-fonts.ubuntu-mono
|
||||||
|
nerd-fonts.dejavu-sans-mono
|
||||||
|
|
||||||
|
# Icon fonts
|
||||||
|
font-awesome
|
||||||
|
material-design-icons
|
||||||
];
|
];
|
||||||
|
|
||||||
fontconfig = {
|
fontconfig = {
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
monospace = ["JetBrainsMono Nerd Font" "Hack Nerd Font"];
|
monospace = [
|
||||||
sansSerif = ["Noto Sans"];
|
"JetBrainsMono Nerd Font"
|
||||||
serif = ["Noto Serif"];
|
"Hack Nerd Font"
|
||||||
emoji = ["Noto Color Emoji"];
|
"FiraCode Nerd Font"
|
||||||
|
];
|
||||||
|
sansSerif = [
|
||||||
|
"Noto Sans"
|
||||||
|
"Noto Sans CJK SC"
|
||||||
|
"DejaVu Sans"
|
||||||
|
];
|
||||||
|
serif = [
|
||||||
|
"Noto Serif"
|
||||||
|
"Noto Serif CJK SC"
|
||||||
|
"DejaVu Serif"
|
||||||
|
];
|
||||||
|
emoji = [
|
||||||
|
"Noto Color Emoji"
|
||||||
|
"Symbola"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue