summary refs log tree commit diff
path: root/nixos/modules/config/gnu.nix
diff options
context:
space:
mode:
authormichael bishop <cleverca22@gmail.com>2016-12-16 12:58:40 -0400
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-16 18:29:25 +0100
commite5cefadef7995b3eafacaf6f1f9099da0f7ccf79 (patch)
tree7921e0da0b25c1ba82087339d83bde3fed3cb284 /nixos/modules/config/gnu.nix
parent1946e872c04079f25e30ed9b3fa9e09f9f9e661c (diff)
downloadnixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.tar
nixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.tar.gz
nixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.tar.bz2
nixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.tar.lz
nixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.tar.xz
nixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.tar.zst
nixpkgs-e5cefadef7995b3eafacaf6f1f9099da0f7ccf79.zip
fix indentation in several nixos option descriptions
Diffstat (limited to 'nixos/modules/config/gnu.nix')
-rw-r--r--nixos/modules/config/gnu.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/config/gnu.nix b/nixos/modules/config/gnu.nix
index f8c35b440d1..ef48ccb7b4f 100644
--- a/nixos/modules/config/gnu.nix
+++ b/nixos/modules/config/gnu.nix
@@ -7,11 +7,11 @@ with lib;
     gnu = mkOption {
       type = types.bool;
       default = false;
-      description =
-        '' When enabled, GNU software is chosen by default whenever a there is
-           a choice between GNU and non-GNU software (e.g., GNU lsh
-           vs. OpenSSH).
-        '';
+      description = ''
+        When enabled, GNU software is chosen by default whenever a there is
+        a choice between GNU and non-GNU software (e.g., GNU lsh
+        vs. OpenSSH).
+      '';
     };
   };