net/shell.nix

8 lines
159 B
Nix
Raw Normal View History

2021-10-31 22:41:15 -04:00
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs { };
in pkgs.mkShell {
name = "net";
buildInputs = with pkgs; [ ruby nodejs ];
}