summary refs log tree commit diff
path: root/nixos/modules/config/fonts
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-07-19 13:43:54 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-07-24 17:34:39 +0200
commitf9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b (patch)
tree0bf096fb3e53b7b9addd65cf31a4bcd78ed47f2c /nixos/modules/config/fonts
parentb0c67b4b6e0d21fd47097886f5c21cfb6bf27aad (diff)
downloadnixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.tar
nixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.tar.gz
nixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.tar.bz2
nixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.tar.lz
nixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.tar.xz
nixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.tar.zst
nixpkgs-f9fdeb2dbcf36636e2c2e537fe9eb1b31d84195b.zip
nixos/ghostscript: evaporate the extra whitespace
Diffstat (limited to 'nixos/modules/config/fonts')
-rw-r--r--nixos/modules/config/fonts/ghostscript.nix28
1 files changed, 9 insertions, 19 deletions
diff --git a/nixos/modules/config/fonts/ghostscript.nix b/nixos/modules/config/fonts/ghostscript.nix
index 5aae7f1d65e..c41fcdaaa32 100644
--- a/nixos/modules/config/fonts/ghostscript.nix
+++ b/nixos/modules/config/fonts/ghostscript.nix
@@ -3,31 +3,21 @@
 with lib;
 
 {
-
   options = {
-
-    fonts = {
-
-      enableGhostscriptFonts = mkOption {
-        type = types.bool;
-        default = false;
-        description = lib.mdDoc ''
-          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.
-        '';
-      };
-
+    fonts.enableGhostscriptFonts = mkOption {
+      type = types.bool;
+      default = false;
+      description = lib.mdDoc ''
+        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.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
-
   };
-
 }