about summary refs log tree commit diff
path: root/shell.nix
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-17 01:10:37 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-17 01:24:48 +0200
commitcd5c9930afd91779d79e86ae1bb2924046dfbdee (patch)
tree1c3ec3dcc29d7b9a292f38c5c54658efd7762fbf /shell.nix
downloadisspass-cd5c9930afd91779d79e86ae1bb2924046dfbdee.tar.gz
isspass-cd5c9930afd91779d79e86ae1bb2924046dfbdee.tar.bz2
isspass-cd5c9930afd91779d79e86ae1bb2924046dfbdee.zip
Setup nix dev environment
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..9518e69
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> { } }:
+pkgs.mkShell {
+  nativeBuildInputs = with pkgs; [
+    elmPackages.elm
+    elm2nix
+  ];
+}