dust: add noto-fonts
This commit is contained in:
parent
16898eaa7c
commit
b5b4208b30
1 changed files with 36 additions and 28 deletions
|
@ -71,13 +71,6 @@
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
(source-sans.overrideAttrs {
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
install -Dm444 VF/*.otf -t $out/share/fonts/variable
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
|
||||||
})
|
|
||||||
(source-serif.overrideAttrs {
|
(source-serif.overrideAttrs {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
@ -87,29 +80,44 @@
|
||||||
})
|
})
|
||||||
source-han-sans-vf-otf
|
source-han-sans-vf-otf
|
||||||
source-han-serif-vf-otf
|
source-han-serif-vf-otf
|
||||||
|
noto-fonts
|
||||||
noto-fonts-color-emoji
|
noto-fonts-color-emoji
|
||||||
];
|
];
|
||||||
fontconfig.defaultFonts = {
|
fontconfig = {
|
||||||
emoji = [
|
defaultFonts = {
|
||||||
"Noto Color Emoji"
|
emoji = [
|
||||||
];
|
"Noto Color Emoji"
|
||||||
# Append emoji font for Qt apps, they might use the monochrome emoji
|
];
|
||||||
monospace = [
|
# Append emoji font for Qt apps, they might use the monochrome emoji
|
||||||
"JetBrains Mono"
|
monospace = [
|
||||||
"Source Han Sans SC VF"
|
"JetBrains Mono"
|
||||||
"Symbols Nerd Font"
|
"Source Han Sans SC VF"
|
||||||
"Noto Color Emoji"
|
"Symbols Nerd Font"
|
||||||
];
|
"Noto Color Emoji"
|
||||||
sansSerif = [
|
];
|
||||||
"Inter Variable"
|
sansSerif = [
|
||||||
"Source Han Sans SC VF"
|
"Inter Variable"
|
||||||
"Noto Color Emoji"
|
"Source Han Sans SC VF"
|
||||||
];
|
"Noto Color Emoji"
|
||||||
serif = [
|
];
|
||||||
"Source Serif 4 Variable"
|
serif = [
|
||||||
"Source Han Serif SC VF"
|
"Source Serif 4 Variable"
|
||||||
"Noto Color Emoji"
|
"Source Han Serif SC VF"
|
||||||
];
|
"Noto Color Emoji"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# GitHub perfers Noto Sans...
|
||||||
|
localConf = ''
|
||||||
|
<selectfont>
|
||||||
|
<rejectfont>
|
||||||
|
<pattern>
|
||||||
|
<patelt name="family">
|
||||||
|
<string>Noto Sans</string>
|
||||||
|
</patelt>
|
||||||
|
</pattern>
|
||||||
|
</rejectfont>
|
||||||
|
</selectfont>
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue