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
Payas Relekar 2cd809f4a7 fonts: remove nerdfonts
I am not using them right now and their build is broken on unstable channel
2024-01-28 00:43:51 +05:30

24 lines
442 B
Nix

{ pkgs, ... }:
{
fonts = {
enableDefaultPackages = true;
fontDir.enable = true;
packages = with pkgs; [
ibm-plex
jetbrains-mono
fira-code
emacs-all-the-icons-fonts
# nerdfonts
# fira-code-nerdfont
julia-mono
symbola
merriweather
merriweather-sans
];
fontconfig = {
enable = true;
defaultFonts = { monospace = [ "IBM Plex Mono" ]; };
};
};
}