diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-17 01:10:37 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-17 01:24:48 +0200 |
commit | cd5c9930afd91779d79e86ae1bb2924046dfbdee (patch) | |
tree | 1c3ec3dcc29d7b9a292f38c5c54658efd7762fbf /shell.nix | |
download | isspass-cd5c9930afd91779d79e86ae1bb2924046dfbdee.tar.gz isspass-cd5c9930afd91779d79e86ae1bb2924046dfbdee.tar.bz2 isspass-cd5c9930afd91779d79e86ae1bb2924046dfbdee.zip |
Setup nix dev environment
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 7 |
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 + ]; +} |