infrastructure/depot/profiles/gui/fonts.nix
2021-08-09 02:41:43 +01:00

27 lines
441 B
Nix

{ config, pkgs, lib, ... }:
{
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fontconfig = {
enable = true;
allowBitmaps = true;
defaultFonts = {
emoji = [
"Twitter Color Emoji"
];
};
};
};
fonts.fonts = with pkgs; [
font-awesome
nerdfonts
vegur
creep
cozette
emacs-all-the-icons-fonts
twitter-color-emoji
];
}