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

23 lines
285 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-12-19 21:02:48 +00:00
jetbrains-mono
victor-mono
noto-fonts
unifont
2022-02-15 09:37:12 +00:00
(nerdfonts.override {
fonts = [
2022-12-19 21:02:48 +00:00
"NerdFontsSymbolsOnly"
2022-02-15 09:37:12 +00:00
];
})
2023-04-30 10:46:08 +00:00
montserrat
2022-02-06 14:03:02 +00:00
];
};
}