summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2019-02-13 20:16:07 +0000
committerGitHub <noreply@github.com>2019-02-13 20:16:07 +0000
commitf539a6a70eb98f1fbe8e84ae9175bcce7ae9892a (patch)
tree25583282be382cc21170f136fd68cbfb29d5de61 /doc
parent7874fe52f558455ef9d512c8f90ba9546d4b55d9 (diff)
parentcefbe6910520b2525df28a1dcc6b3ef1a845708f (diff)
downloadnixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.tar
nixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.tar.gz
nixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.tar.bz2
nixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.tar.lz
nixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.tar.xz
nixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.tar.zst
nixpkgs-f539a6a70eb98f1fbe8e84ae9175bcce7ae9892a.zip
Merge pull request #55138 from oxij/tree/random-fixes
random cleanups and a tiny fix
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/haskell.section.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/languages-frameworks/haskell.section.md b/doc/languages-frameworks/haskell.section.md
index 74b7a9f961e..81f662f1a17 100644
--- a/doc/languages-frameworks/haskell.section.md
+++ b/doc/languages-frameworks/haskell.section.md
@@ -352,9 +352,9 @@ you want them to come from. Add the following to `configuration.nix`.
 
 ```nix
 services.hoogle = {
-enable = true;
-packages = (hpkgs: with hpkgs; [text cryptonite]);
-haskellPackages = pkgs.haskellPackages;
+  enable = true;
+  packages = (hpkgs: with hpkgs; [text cryptonite]);
+  haskellPackages = pkgs.haskellPackages;
 };
 ```