11 lines
176 B
Nix
11 lines
176 B
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
{
|
||
|
fonts.fonts = with pkgs; [
|
||
|
noto-fonts
|
||
|
dejavu_fonts
|
||
|
nerdfonts # Includes font-awesome, material-icons, powerline-fonts
|
||
|
iosevka
|
||
|
];
|
||
|
|
||
|
}
|