mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-21 16:31:22 +02:00
refactor: fonts (#194)
This commit is contained in:
@@ -10,7 +10,7 @@ with lib; let
|
||||
in {
|
||||
imports = [
|
||||
./base
|
||||
../base.nix
|
||||
../base
|
||||
|
||||
./desktop
|
||||
];
|
||||
|
||||
@@ -5,47 +5,8 @@
|
||||
enableDefaultPackages = false;
|
||||
fontDir.enable = true;
|
||||
|
||||
packages = with pkgs; [
|
||||
# icon fonts
|
||||
material-design-icons
|
||||
font-awesome
|
||||
|
||||
# nerdfonts
|
||||
# https://github.com/NixOS/nixpkgs/blob/nixos-unstable-small/pkgs/data/fonts/nerd-fonts/manifests/fonts.json
|
||||
nerd-fonts.symbols-only # symbols icon only
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.jetbrains-mono
|
||||
nerd-fonts.iosevka
|
||||
|
||||
# Noto 是 Google 开发的开源字体家族
|
||||
# 名字的含义是「没有豆腐」(no tofu),因为缺字时显示的方框或者方框被叫作 tofu
|
||||
#
|
||||
# Noto 系列字族只支持西文,命名规则是 Noto + Sans 或 Serif + 文字名称。
|
||||
noto-fonts # 大部分文字的常见样式,不包含汉字
|
||||
noto-fonts-color-emoji # 彩色的表情符号字体
|
||||
# Noto CJK 为「思源」系列汉字字体,由 Adobe + Google 共同开发
|
||||
# Google 以 Noto Sans/Serif CJK SC/TC/HK/JP/KR 的名称发布该系列字体。
|
||||
# 这俩跟 noto-fonts-cjk-sans/serif 实际为同一字体,只是分别由 Adobe/Google 以自己的品牌名发布
|
||||
# noto-fonts-cjk-sans # 思源黑体
|
||||
# noto-fonts-cjk-serif # 思源宋体
|
||||
|
||||
# Adobe 以 Source Han Sans/Serif 的名称发布此系列字体
|
||||
source-sans # 无衬线字体,不含汉字。字族名叫 Source Sans 3,以及带字重的变体(VF)
|
||||
source-serif # 衬线字体,不含汉字。字族名叫 Source Serif 4,以及带字重的变体
|
||||
# Source Hans 系列汉字字体由 Adobe + Google 共同开发
|
||||
source-han-sans # 思源黑体
|
||||
source-han-serif # 思源宋体
|
||||
source-han-mono # 思源等宽
|
||||
|
||||
# 霞鹜文楷屏幕阅读版
|
||||
# https://github.com/lxgw/LxgwWenKai-Screen
|
||||
lxgw-wenkai-screen
|
||||
|
||||
# Maple Mono NF CN (连字 未微调版,适用于高分辨率屏幕)
|
||||
# Full version, embed with nerdfonts icons, Chinese and Japanese glyphs
|
||||
# https://github.com/subframe7536/maple-font
|
||||
maple-mono.NF-CN-unhinted
|
||||
];
|
||||
# fonts are defined in /modules/base/fonts.nix, used by both NixOS & Darwin.
|
||||
# packages = [ ... ];
|
||||
|
||||
fontconfig = {
|
||||
# User defined default fonts
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
../base/ssh.nix
|
||||
../base/user-group.nix
|
||||
|
||||
../../base.nix
|
||||
../../base
|
||||
];
|
||||
|
||||
# Fix: jasper is marked as broken, refusing to evaluate.
|
||||
|
||||
@@ -12,6 +12,6 @@
|
||||
../base/ssh.nix
|
||||
../base/user-group.nix
|
||||
|
||||
../../base.nix
|
||||
../../base
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{lib, ...}: {
|
||||
imports = [
|
||||
../base
|
||||
../../base.nix
|
||||
../../base
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user