dotfiles/system/fonts.nix
2022-02-15 10:37:12 +01:00

18 lines
232 B
Nix

{ pkgs, ... }:
{
fonts = {
enableFontDir = true;
fonts = with pkgs; [
(nerdfonts.override {
fonts = [
"FiraCode"
"JetBrainsMono"
"VictorMono"
];
})
];
};
}