nixfiles/profiles/gui/base/default.nix

28 lines
755 B
Nix
Raw Normal View History

2023-06-03 18:50:49 +01:00
{pkgs, ...}: {
fonts = {
2023-07-28 22:19:06 +01:00
packages = with pkgs; [comic-sans comic-code];
2023-06-03 18:50:49 +01:00
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"];
};
};
};
}