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