This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/modules/fonts.nix

25 lines
442 B
Nix
Raw Permalink Normal View History

2023-04-05 01:56:27 +05:30
{ pkgs, ... }:
{
fonts = {
enableDefaultPackages = true;
fontDir.enable = true;
packages = with pkgs; [
2023-04-05 01:56:27 +05:30
ibm-plex
jetbrains-mono
fira-code
emacs-all-the-icons-fonts
# nerdfonts
# fira-code-nerdfont
2023-10-15 14:32:46 +05:30
julia-mono
symbola
merriweather
merriweather-sans
];
fontconfig = {
enable = true;
defaultFonts = { monospace = [ "IBM Plex Mono" ]; };
};
};
}