15 lines
240 B
Nix
15 lines
240 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
fonts = {
|
|
fonts = with pkgs; [powerline-fonts dejavu_fonts];
|
|
fontconfig.defaultFonts = {
|
|
monospace = ["DejaVu Sans Mono for Powerline"];
|
|
sansSerif = ["DejaVu Sans"];
|
|
};
|
|
};
|
|
}
|