blob: 6884079528145eda73b9ef77983666b27478dd4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
{ pkgs, inputs, ... }:
{
imports = [ ./meowsans ];
fonts = {
fontconfig = {
enable = true;
defaultFonts = {
serif = [
"New York Medium"
"Hiragino Sans"
"JoyPixels"
"Noto Color Emoji"
"FontAwesome"
];
sansSerif = [
"SF Pro Text"
"Hiragino Sans"
"JoyPixels"
"Noto Color Emoji"
"FontAwesome"
];
monospace = [
"SF Mono"
"Hiragino Sans"
"JoyPixels"
"FontAwesome"
"Braille"
];
};
};
};
home.packages =
with pkgs;
with inputs.apple-fonts.packages.${pkgs.system};
[
source-code-pro
source-han-sans
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-color-emoji
lmodern
hanazono
jigmo
iosevka
libertine
sarasa-gothic
cantarell-fonts
inter
font-awesome
joypixels
hiragino-sans
weather-icons
material-design-icons
meslo-lgs-nf
sf-pro
sf-pro-nerd
sf-compact
sf-compact-nerd
sf-mono
sf-mono-nerd
sf-arabic
sf-arabic-nerd
ny
ny-nerd
];
nixpkgs.config.joypixels.acceptLicense = true;
}
|