Add shell.nix

This commit is contained in:
Mark Vainomaa
2021-05-13 04:34:17 +03:00
parent 0ac18cd572
commit 911ce56461
3 changed files with 6 additions and 0 deletions
+1
View File
@@ -1,2 +1,3 @@
export CACHIX_AUTH_TOKEN=''
export CACHIX_SIGNING_KEY=''
use nix
+1
View File
@@ -1,2 +1,3 @@
/.envrc
/.direnv
result
+4
View File
@@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ cachix ];
}