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

18 lines
233 B
Nix
Raw Normal View History

2022-02-06 14:03:02 +00:00
{ pkgs, ... }:
{
fonts = {
2022-04-19 21:43:35 +00:00
fontDir.enable = true;
2022-02-06 14:03:02 +00:00
fonts = with pkgs; [
2022-02-15 09:37:12 +00:00
(nerdfonts.override {
fonts = [
"FiraCode"
"JetBrainsMono"
"VictorMono"
];
})
2022-02-06 14:03:02 +00:00
];
};
}