My Nix Configuration
at main 485 B view raw
1{ pkgs, lib, ... }: 2{ 3 fonts = { 4 fontDir.enable = true; 5 fontconfig = { 6 enable = lib.mkForce true; 7 defaultFonts = { 8 serif = [ "IBM Plex Serif" ]; 9 sansSerif = [ "IBM Plex Sans" ]; 10 monospace = [ 11 "IBM Plex Mono" 12 "FiraCode Nerd Font Mono" 13 ]; 14 emoji = [ "JoyPixels" ]; 15 }; 16 }; 17 packages = with pkgs; [ 18 ibm-plex 19 nerd-fonts.blex-mono 20 nerd-fonts.symbols-only 21 inter 22 ]; 23 }; 24}