1
0
Fork 0
dotfiles/system/darwin/fonts.nix

20 lines
249 B
Nix

{ pkgs, ... }:
{
fonts = {
fontDir.enable = true;
fonts = with pkgs; [
jetbrains-mono
noto-fonts
unifont
(nerdfonts.override {
fonts = [
"NerdFontsSymbolsOnly"
];
})
];
};
}