about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-06-28 17:27:21 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-06-28 17:27:21 +0200
commitebbfcf758357edbe63c97d7a92c2e17c61112386 (patch)
tree85deeb5657999cd0b93c502c5d45a01f79943233
parentLuna: Add xmodmap-based keymap config (diff)
downloadnixos-config-ebbfcf758357edbe63c97d7a92c2e17c61112386.tar.gz
nixos-config-ebbfcf758357edbe63c97d7a92c2e17c61112386.tar.bz2
nixos-config-ebbfcf758357edbe63c97d7a92c2e17c61112386.zip
Add haskell shell
-rw-r--r--shells/haskell.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/shells/haskell.nix b/shells/haskell.nix
new file mode 100644
index 0000000..c2850fb
--- /dev/null
+++ b/shells/haskell.nix
@@ -0,0 +1,8 @@
+{ pkgs ? import <nixpkgs> { } }:
+pkgs.mkShell {
+  name = "haskell-shell";
+  buildInputs = with pkgs; [
+    ghc
+    cabal-install
+  ];
+}