20 lines
		
	
	
		
			428 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			428 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| {
 | |
|   environment.systemPackages = with pkgs; [ twemoji-color-font ];
 | |
|   fonts.packages = with pkgs; [
 | |
|     fira-code
 | |
|     fira-code-symbols
 | |
|     font-awesome
 | |
|     nerd-fonts.jetbrains-mono
 | |
|     nerd-fonts.fira-code
 | |
|     nerd-fonts.droid-sans-mono
 | |
|     nerd-fonts.dejavu-sans-mono
 | |
|     noto-fonts
 | |
|     noto-fonts-cjk-sans
 | |
|     noto-fonts-emoji
 | |
|     noto-fonts-monochrome-emoji
 | |
|     source-sans-pro
 | |
|     twemoji-color-font
 | |
|   ];
 | |
| }
 |