Files
Nixos-Config/modules/system/fonts.nix
2026-04-20 15:12:43 +00:00

25 lines
626 B
Nix

# ==========================================
# FONTS CONFIGURATION
# ==========================================
# Omarchy default: JetBrainsMono Nerd Font
# ==========================================
{ config, pkgs, ... }:
{
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
nerd-fonts.fira-code
nerd-fonts._0xproto
nerd-fonts.droid-sans-mono
noto-fonts
noto-fonts-color-emoji
];
fonts.fontconfig.defaultFonts = {
monospace = [ "JetBrainsMono Nerd Font" "FiraCode Nerd Font" ];
sansSerif = [ "Noto Sans" ];
serif = [ "Noto Serif" ];
emoji = [ "Noto Color Emoji" ];
};
}