11 lines
142 B
Nix
11 lines
142 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
config = {
|
|
fonts.packages = with pkgs; [
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
|
];
|
|
};
|
|
}
|