16 lines
317 B
Nix
16 lines
317 B
Nix
{pkgs, ...}: {
|
|
# Fonts
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
liberation_ttf
|
|
twitter-color-emoji
|
|
ubuntu_font_family
|
|
noto-fonts
|
|
sarasa-gothic
|
|
orbitron
|
|
(nerdfonts.override {fonts = ["UbuntuMono"];})
|
|
];
|
|
fontconfig.defaultFonts.emoji = ["Twitter Color Emoji"];
|
|
};
|
|
}
|