11 lines
156 B
Nix
11 lines
156 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
enableFontDir = true;
|
|
|
|
fonts = with pkgs; [
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
];
|
|
};
|
|
}
|