11 lines
		
	
	
	
		
			199 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			199 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs, ... }:
 | 
						|
{
 | 
						|
  fonts.enableDefaultPackages = true;
 | 
						|
  fonts.packages = with pkgs; [
 | 
						|
    noto-fonts
 | 
						|
    noto-fonts-cjk-sans
 | 
						|
    noto-fonts-emoji
 | 
						|
    nerd-fonts.fira-code
 | 
						|
    nerd-fonts.hack
 | 
						|
  ];
 | 
						|
}
 |