lol

nixos/ghostscript: evaporate the extra whitespace

+9 -19
+9 -19
nixos/modules/config/fonts/ghostscript.nix
··· 3 3 with lib; 4 4 5 5 { 6 - 7 6 options = { 8 - 9 - fonts = { 10 - 11 - enableGhostscriptFonts = mkOption { 12 - type = types.bool; 13 - default = false; 14 - description = lib.mdDoc '' 15 - Whether to add the fonts provided by Ghostscript (such as 16 - various URW fonts and the “Base-14” Postscript fonts) to the 17 - list of system fonts, making them available to X11 18 - applications. 19 - ''; 20 - }; 21 - 7 + fonts.enableGhostscriptFonts = mkOption { 8 + type = types.bool; 9 + default = false; 10 + description = lib.mdDoc '' 11 + Whether to add the fonts provided by Ghostscript (such as 12 + various URW fonts and the “Base-14” Postscript fonts) to the 13 + list of system fonts, making them available to X11 14 + applications. 15 + ''; 22 16 }; 23 17 24 18 }; 25 - 26 19 27 20 config = mkIf config.fonts.enableGhostscriptFonts { 28 - 29 21 fonts.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ]; 30 - 31 22 }; 32 - 33 23 }