🔧 nix shell configs

This commit is contained in:
2021-10-31 22:41:15 -04:00
parent dec89f3600
commit 4c3e051a4e
4 changed files with 208 additions and 0 deletions

7
shell.nix Normal file
View File

@@ -0,0 +1,7 @@
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs { };
in pkgs.mkShell {
name = "net";
buildInputs = with pkgs; [ ruby nodejs ];
}