22 lines
320 B
Nix
22 lines
320 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
fontDir.enable = true;
|
|
|
|
fonts = with pkgs; [
|
|
jetbrains-mono
|
|
victor-mono
|
|
noto-fonts
|
|
unifont
|
|
|
|
(nerdfonts.override {
|
|
fonts = [
|
|
"NerdFontsSymbolsOnly"
|
|
# "JetBrainsMono"
|
|
# "VictorMono"
|
|
];
|
|
})
|
|
];
|
|
};
|
|
}
|