2021-02-07 02:38:11 +03:00

31 lines
666 B
Nix

{ pkgs, config, lib, ... }:
let
thm = config.lib.base16.theme;
in
{
fonts = {
fonts = with pkgs; [
ibm-plex
ibm-plex-powerline
fira-code
roboto
roboto-mono
roboto-slab
# powerline-fonts
# Icons
# font-awesome_4
font-awesome
material-icons
# material-design-icons
];
fontconfig = {
enable = lib.mkForce true;
defaultFonts = {
monospace = [ "${thm.fontMono} ${thm.normalFontSize}" ];
sansSerif = [ "${thm.font} ${thm.normalFontSize}" ];
serif = [ "${thm.fontSerif} ${thm.normalFontSize}" ];
};
};
enableDefaultFonts = true;
};
}