This repository has been archived on 2026-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
concord/backend/flake.nix

23 lines
517 B
Nix
Raw Normal View History

2026-04-18 16:52:10 -04:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/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 {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
2026-05-01 15:45:27 -04:00
bun
prisma_7
2026-04-18 16:52:10 -04:00
];
shellHook = ''
2026-05-01 15:45:27 -04:00
echo Bun development environment ready!
2026-04-18 16:52:10 -04:00
'';
};
}
);
}