29 lines
504 B
Nix
29 lines
504 B
Nix
{pkgs, ...}: let
|
|
nerd-fonts = [
|
|
"FiraCode"
|
|
"DroidSansMono"
|
|
"JetBrainsMono"
|
|
"FantasqueSansMono"
|
|
"Iosevka"
|
|
"Meslo"
|
|
];
|
|
in {
|
|
fonts = {
|
|
fontDir.enable = true;
|
|
fonts =
|
|
[
|
|
(pkgs.nerdfonts.override {fonts = nerd-fonts;})
|
|
]
|
|
++ builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
fira-code
|
|
open-fonts
|
|
powerline-fonts
|
|
liberation_ttf
|
|
iosevka
|
|
meslo-lgs-nf # p10k
|
|
;
|
|
};
|
|
};
|
|
}
|