13 lines
191 B
Nix
13 lines
191 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts.fontconfig = {
|
|
enable = true;
|
|
};
|
|
home.packages = with pkgs; [
|
|
dejavu_fonts
|
|
noto-fonts
|
|
noto-fonts-extra
|
|
noto-fonts-cjk
|
|
font-awesome
|
|
];
|
|
}
|