1
0
Fork 0
dotfiles/system/fonts.nix

18 lines
232 B
Nix
Raw Normal View History

2022-02-06 14:03:02 +00:00
{ pkgs, ... }:
{
fonts = {
enableFontDir = true;
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
];
};
}