mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-08-23 18:25:20 +00:00
Adds nix for deps
This commit is contained in:
+14
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user