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"
|
|
|
|
# "JetBrainsMono"
|
|
|
|
# "VictorMono"
|
2022-02-15 09:37:12 +00:00
|
|
|
];
|
|
|
|
})
|
2022-02-06 14:03:02 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|