1
0
Fork 0
dotfiles/system/fonts.nix

11 lines
156 B
Nix

{ pkgs, ... }:
{
fonts = {
enableFontDir = true;
fonts = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
];
};
}