You can now just set fonts.fonts, which will be merged with the default value unless you use mkOverride.
		
			
				
	
	
		
			33 lines
		
	
	
		
			563 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			563 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
{
 | 
						|
 | 
						|
  options = {
 | 
						|
 | 
						|
    fonts = {
 | 
						|
 | 
						|
      enableGhostscriptFonts = mkOption {
 | 
						|
        default = false;
 | 
						|
        description = ''
 | 
						|
          Whether to add the fonts provided by Ghostscript (such as
 | 
						|
          various URW fonts and the “Base-14” Postscript fonts) to the
 | 
						|
          list of system fonts, making them available to X11
 | 
						|
          applications.
 | 
						|
        '';
 | 
						|
      };
 | 
						|
 | 
						|
    };
 | 
						|
 | 
						|
  };
 | 
						|
 | 
						|
 | 
						|
  config = mkIf config.fonts.enableGhostscriptFonts {
 | 
						|
 | 
						|
    fonts.fonts = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
 | 
						|
 | 
						|
  };
 | 
						|
 | 
						|
}
 |