25 lines
478 B
Nix
25 lines
478 B
Nix
{ pkgs, ... }: {
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
liberation_ttf
|
|
twitter-color-emoji
|
|
noto-fonts
|
|
sarasa-gothic
|
|
ubuntu_font_family
|
|
(nerdfonts.override {
|
|
fonts = [
|
|
"UbuntuMono"
|
|
];
|
|
})
|
|
];
|
|
fontconfig.defaultFonts.emoji = [
|
|
"Twitter Color Emoji"
|
|
];
|
|
};
|
|
|
|
console = {
|
|
font = "${pkgs.terminus_font}/share/consolefonts/ter-u22n.psf.gz";
|
|
packages = with pkgs; [ terminus_font ];
|
|
};
|
|
}
|