2024-05-31 00:17:16 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
fonts.fontconfig.enable = true;
|
2024-06-14 17:31:17 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
noto-fonts
|
|
|
|
noto-fonts-cjk
|
|
|
|
noto-fonts-emoji
|
|
|
|
hack-font
|
|
|
|
liberation_ttf
|
|
|
|
libertine
|
2024-06-14 18:04:48 +01:00
|
|
|
nerdfonts
|
2024-06-15 13:08:55 +01:00
|
|
|
font-awesome
|
2024-05-31 00:17:16 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
}
|