1
0
Fork 0

feat: add nix file

user-stream
Paul Makles 2023-08-25 18:36:04 +01:00
parent d02d88c073
commit a748a68ba7
No known key found for this signature in database
GPG Key ID: 5059F398521BB0F6
1 changed files with 9 additions and 0 deletions

9
default.nix Normal file
View File

@ -0,0 +1,9 @@
with import <nixpkgs> { };
pkgs.mkShell {
name = "adminEnv";
buildInputs = [
pkgs.git
pkgs.nodejs
pkgs.nodePackages.pnpm
];
}