Adds nix for deps

This commit is contained in:
Akshay Nair
2021-01-05 20:04:46 +05:30
parent cd47b744c6
commit 24a6dbf6df
+14
View File
@@ -0,0 +1,14 @@
{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-15_x
yarn
dnsutils
certbot
];
in pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = nixPackages;
}