7 lines
122 B
Nix
7 lines
122 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
fonts.fonts = with pkgs; [
|
||
|
(nerdfonts.override { fonts = [ "FiraCode" "JetBrainsMono" ]; })
|
||
|
];
|
||
|
}
|