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 7113f7b6ae fonts: Update as per upstream
I'll just say it right here. The 'fonts.fonts' thing really bugged me
when I started out with NixOS and still annoyed me after. Its nice to
see it made nicer, even if just for posterity.
2023-07-27 21:05:32 +05:30

20 lines
360 B
Nix

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