Add nix dev shell

This commit is contained in:
kolaente 2020-07-19 21:47:03 +02:00
parent 76f72fa8a1
commit 978e711642
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 9 additions and 0 deletions

9
default.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name="electron-dev";
buildInputs = [
pkgs.electron
];
}