add fonts

This commit is contained in:
TheWanderingCrow 2025-06-30 17:24:31 -04:00
parent 81ebb44451
commit 718d63e319

View file

@ -1,8 +1,18 @@
{pkgs, ...}: {
fonts.packages = with pkgs; [
font-awesome
nerd-fonts.noto
nerd-fonts.hack
nerd-fonts.jetbrains-mono
];
fonts = {
packages = with pkgs; [
font-awesome
nerd-fonts.noto
nerd-fonts.hack
nerd-fonts.jetbrains-mono
];
fontconfig = {
defaultFonts = {
monospace = ["JetBrainsMono Nerd Font" "Hack Nerd Font"];
sansSerif = ["Noto Sans"];
serif = ["Noto Serif"];
emoji = ["Noto Color Emoji"];
};
};
};
}