mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-14 06:58:57 +00:00
17 lines
247 B
Nix
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;
|
|
}
|