about summary refs log tree commit diff
path: root/machines/profpatsch/pkgs.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2017-02-10 19:10:09 +0100
committerProfpatsch <mail@profpatsch.de>2017-02-10 19:11:46 +0100
commite944c9baf5844c0163a4947af1535ea45e524e12 (patch)
treed24f4e38cb56ddac4e06e9aef943b2d864772faf /machines/profpatsch/pkgs.nix
parent8bb3d6460c4fe402cab73389b7c4c8bf699a0eba (diff)
machines/katara: improve ghci in PATH with default packages
Diffstat (limited to 'machines/profpatsch/pkgs.nix')
-rw-r--r--machines/profpatsch/pkgs.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index 740785f3..45ce34f4 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -67,5 +67,9 @@ let
   searx = pkgs.pythonPackages.searx.overrideDerivation (old: {
     patches = old.patches or [] ++ [ ./patches/searx_secret_key.patch ];
   });
+
+  # A ghci with some sane default packages in scope, & hoogle
+  saneGhci = haskellPackages.ghcWithHoogle (h: with h; [ protolude ]);
+
 in
-{ inherit taffybar sent mpv beets poezio vim fast-init xmpp-client searx; }
+{ inherit taffybar sent mpv beets poezio vim fast-init xmpp-client searx saneGhci; }