1
0
Fork 0
dotfiles/system/fonts.nix

12 lines
156 B
Nix
Raw Normal View History

2022-02-06 14:03:02 +00:00
{ pkgs, ... }:
{
fonts = {
enableFontDir = true;
fonts = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
};
}