dotfiles.nix/profiles/fonts.nix

17 lines
306 B
Nix
Raw Normal View History

2021-01-11 03:59:20 +00:00
{ config, pkgs, ... }: {
fonts = {
enableDefaultFonts = true;
fonts = with pkgs; [
source-code-pro
fira-code
fira-code-symbols
font-awesome_4
aileron
];
fontconfig = {
enable = true;
defaultFonts = { monospace = [ "Fira Code" ]; };
};
};
}