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/flake.nix

22 lines
390 B
Nix
Raw Permalink Normal View History

2026-05-02 02:44:18 -04:00
{
description = "Concord development environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
2026-05-03 22:18:26 -04:00
outputs =
{ self, nixpkgs }:
2026-05-02 02:44:18 -04:00
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.pnpm
];
};
};
}