about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2022-06-28 17:27:21 +0200
committerBaitinq <[email protected]>2022-06-28 17:27:21 +0200
commit321099946662b618ed368d77ac25ad8c2d063e27 (patch)
tree70cd5bd844eea8eb27303f7fed9cbf22cae03308
parentLuna: Add xmodmap-based keymap config (diff)
downloadnixos-config-321099946662b618ed368d77ac25ad8c2d063e27.tar.gz
nixos-config-321099946662b618ed368d77ac25ad8c2d063e27.tar.bz2
nixos-config-321099946662b618ed368d77ac25ad8c2d063e27.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
+  ];
+}