11 lines
145 B
Nix
11 lines
145 B
Nix
{pkgs, ...}:
|
|
{
|
|
fonts.fonts = with pkgs; [
|
|
font-awesome
|
|
(nerdfonts.override {
|
|
fonts = [
|
|
"FiraCode"
|
|
];
|
|
})
|
|
];
|
|
}
|