net/shell.nix
2021-10-31 22:41:15 -04:00

8 lines
159 B
Nix

let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs { };
in pkgs.mkShell {
name = "net";
buildInputs = with pkgs; [ ruby nodejs ];
}