Files
2021-09-02 13:37:34 +05:30

17 lines
247 B
Nix

{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
nixPackages = with pkgs; [
nodejs-16_x
yarn
docker-compose
dnsutils
#certbot
];
in
pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = nixPackages;
}