mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34: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, ...}: {
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
font-awesome
|
||||
nerd-fonts.noto
|
||||
nerd-fonts.hack
|
||||
# Emoji and general symbols
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-emoji
|
||||
noto-fonts-extra
|
||||
unifont
|
||||
|
||||
# Nerd fonts
|
||||
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 = {
|
||||
defaultFonts = {
|
||||
monospace = ["JetBrainsMono Nerd Font" "Hack Nerd Font"];
|
||||
sansSerif = ["Noto Sans"];
|
||||
serif = ["Noto Serif"];
|
||||
emoji = ["Noto Color Emoji"];
|
||||
monospace = [
|
||||
"JetBrainsMono Nerd Font"
|
||||
"Hack Nerd Font"
|
||||
"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