mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Attempted fonts fix
This commit is contained in:
parent
f9b18c7122
commit
b939799bdc
1 changed files with 15 additions and 10 deletions
|
|
@ -1,18 +1,23 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
fonts.fontconfig = {
|
fonts = {
|
||||||
enable = true;
|
enableDefaultFonts = true;
|
||||||
defaultFonts = {
|
fontDir.enable = true;
|
||||||
emoji = [
|
fontconfig = {
|
||||||
"Twitter Color Emoji"
|
enable = true;
|
||||||
];
|
defaultFonts = {
|
||||||
|
emoji = [
|
||||||
|
"Twitter Color Emoji"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
fonts.fonts = with pkgs; [
|
||||||
font-awesome
|
font-awesome
|
||||||
nerdfonts
|
nerdfonts
|
||||||
emacs-all-the-icons-fonts
|
emacs-all-the-icons-fonts
|
||||||
twitter-color-emoji
|
twitter-color-emoji
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue