initial config
This commit is contained in:
24
modules/system/fonts.nix
Normal file
24
modules/system/fonts.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
# ==========================================
|
||||
# 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-emoji
|
||||
];
|
||||
|
||||
fonts.fontconfig.defaultFonts = {
|
||||
monospace = [ "JetBrainsMono Nerd Font" "FiraCode Nerd Font" ];
|
||||
sansSerif = [ "Noto Sans" ];
|
||||
serif = [ "Noto Serif" ];
|
||||
emoji = [ "Noto Color Emoji" ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user