From 9ee5a5afc053b82ee0a17fc9d4dc78378de7d71c Mon Sep 17 00:00:00 2001 From: James Walker Date: Thu, 18 Feb 2021 17:07:45 -0500 Subject: [PATCH] =?UTF-8?q?=CE=BB=20(set=20a=20ghci=20prompt)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/haskell.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/haskell.nix b/modules/haskell.nix index f0c2f10..0956979 100644 --- a/modules/haskell.nix +++ b/modules/haskell.nix @@ -8,4 +8,8 @@ haskellPackages.ghcide haskellPackages.hoogle ]; + + home.file.".ghci".text = '' + :set prompt "λ> " + ''; }