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