16 lines
249 B
Nix
16 lines
249 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
fonts = {
|
||
|
fontconfig.enable = true;
|
||
|
enableDefaultPackages = true;
|
||
|
packages = with pkgs.nerd-fonts; [
|
||
|
fira-code
|
||
|
droid-sans-mono
|
||
|
hack
|
||
|
dejavu-sans-mono
|
||
|
noto
|
||
|
open-dyslexic
|
||
|
];
|
||
|
};
|
||
|
}
|