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,9 +80,11 @@
|
||||||
})
|
})
|
||||||
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 = {
|
||||||
|
defaultFonts = {
|
||||||
emoji = [
|
emoji = [
|
||||||
"Noto Color Emoji"
|
"Noto Color Emoji"
|
||||||
];
|
];
|
||||||
|
@ -111,6 +106,19 @@
|
||||||
"Noto Color Emoji"
|
"Noto Color Emoji"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
# GitHub perfers Noto Sans...
|
||||||
|
localConf = ''
|
||||||
|
<selectfont>
|
||||||
|
<rejectfont>
|
||||||
|
<pattern>
|
||||||
|
<patelt name="family">
|
||||||
|
<string>Noto Sans</string>
|
||||||
|
</patelt>
|
||||||
|
</pattern>
|
||||||
|
</rejectfont>
|
||||||
|
</selectfont>
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
console = {
|
console = {
|
||||||
|
|
Loading…
Reference in a new issue