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

23 lines
320 B
Nix

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