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

21 lines
360 B
Nix
Raw Normal View History

2023-04-05 01:56:27 +05:30
{ pkgs, ... }:
{
fonts = {
enableDefaultPackages = true;
fontDir.enable = true;
packages = with pkgs; [
work-sans
2023-04-05 01:56:27 +05:30
ibm-plex
jetbrains-mono
cascadia-code
fira-code
emacs-all-the-icons-fonts
];
fontconfig = {
enable = true;
defaultFonts = { monospace = [ "JetBrains Mono" ]; };
};
};
}