Files
2025-12-08 17:06:27 +03:00

27 lines
581 B
Nix

{
description = "VERT.sh";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
bun
nodejs
# are these needed?
nodePackages.prettier
nodePackages.eslint
];
};
});
}