6 lines
136 B
Nix
6 lines
136 B
Nix
{pkgs, ...}: {
|
|
fonts.fontDir.enable = true;
|
|
fonts.fonts = with pkgs; [
|
|
(nerdfonts.override {fonts = ["JetBrainsMono"];})
|
|
];
|
|
}
|