plinth-infra/pds-testing/flake.nix

15 lines
272 B
Nix
Raw Permalink Normal View History

2024-11-26 20:02:15 +00:00
{
description = "pds-testing";
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
devShells."x86_64-linux".default = pkgs.mkShell {
buildInputs = [
pkgs.nodejs_22
pkgs.pnpm
];
};
};
}