28 lines
755 B
Nix
28 lines
755 B
Nix
{pkgs, ...}: {
|
|
fonts = {
|
|
packages = with pkgs; [comic-sans comic-code];
|
|
fontconfig = {
|
|
# For Telegram
|
|
localConf = ''
|
|
<match>
|
|
<test name="family"><string>Open Sans</string></test>
|
|
<edit name="family" mode="assign" binding="strong">
|
|
<string>Comic Sans MS</string>
|
|
</edit>
|
|
</match>
|
|
<match>
|
|
<test name="family"><string>Open Sans Semibold</string></test>
|
|
<edit name="family" mode="assign" binding="strong">
|
|
<string>Comic Sans MS:style=bold</string>
|
|
</edit>
|
|
</match>
|
|
'';
|
|
defaultFonts = {
|
|
serif = ["Comic Sans MS"];
|
|
sansSerif = ["Comic Sans MS"];
|
|
monospace = ["Comic Code"];
|
|
};
|
|
};
|
|
};
|
|
}
|