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