9 lines
115 B
Nix
9 lines
115 B
Nix
|
|
{ pkgs, ... }
|
|
{
|
|
|
|
# Fonts
|
|
|
|
font.fonts = with pkgs; [
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
];
|