Former-commit-id: 905cc9a885
This commit is contained in:
Hadi
2024-10-06 18:49:52 +02:00
parent 13c8f27411
commit 18c30e5931
75 changed files with 326 additions and 1325 deletions

35
nixos/fonts.nix Normal file
View File

@@ -0,0 +1,35 @@
{ pkgs, inputs, ... }: {
fonts = {
packages = with pkgs; [
roboto
work-sans
comic-neue
source-sans
comfortaa
inter
lato
lexend
jost
dejavu_fonts
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
(nerdfonts.override { fonts = [ "FiraCode" "Meslo" ]; })
openmoji-color
twemoji-color-font
inputs.apple-fonts.packages.${pkgs.system}.sf-pro-nerd
];
enableDefaultPackages = false;
fontconfig = {
defaultFonts = {
monospace = [ "FiraCode Nerd Font Mono" "Noto Color Emoji" ];
sansSerif = [ "SFProDisplay Nerd Font" "Noto Color Emoji" ];
serif = [ "SFProDisplay Nerd Font" "Noto Color Emoji" ];
emoji = [ "Noto Color Emoji" ];
};
};
};
}