Files
agent-evals/flake.nix
Evan Reichard d9b143f4f8 docs: update specification to use TypeScript frontend
- Replace 'Vanilla JavaScript' with 'TypeScript' in frontend requirements
- Update flake.nix to use nodejs package instead of tailwindcss
- Clarify testing requirements to cover both frontend and backend
- Fix punctuation in evaluation checklist
2026-02-03 20:55:02 -05:00

40 lines
669 B
Nix

{
description = "Development Environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{ self
, nixpkgs
, flake-utils
,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = (
import nixpkgs {
system = system;
}
);
in
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
go
gopls
golangci-lint
nodejs
eslint
gnumake
lsof
];
};
}
);
}