aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-08-29 18:37:54 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-08-29 18:37:54 +0200
commitda28a4e2afef21710f73860b26893fa18dd32858 (patch)
tree3ce951ff67ab7eb8d55fa79415bacaca85896256 /shell.nix
parent1052bfda27ad0607cd4dc5dc91e2d8e8220c30c7 (diff)
downloadNix-da28a4e2afef21710f73860b26893fa18dd32858.tar.gz
Nix-da28a4e2afef21710f73860b26893fa18dd32858.tar.zst
Nix-da28a4e2afef21710f73860b26893fa18dd32858.zip
Add environment file instead of hardcoding everything in makefiles
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..70c7604
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,4 @@
1{ pkgs ? import <nixpkgs> { overlays = builtins.attrValues (import ./overlays); } }:
2pkgs.mkShell {
3 buildInputs = [ pkgs.nixops pkgs.niv pkgs.pass pkgs.curl pkgs.shellcheck pkgs.jq pkgs.gnumake ];
4}