21 lines
386 B
Nix
21 lines
386 B
Nix
|
|
{
|
||
|
|
description = "Concord development environment";
|
||
|
|
|
||
|
|
inputs = {
|
||
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
|
};
|
||
|
|
|
||
|
|
outputs = { self, nixpkgs }:
|
||
|
|
let
|
||
|
|
system = "x86_64-linux";
|
||
|
|
pkgs = import nixpkgs { inherit system; };
|
||
|
|
in
|
||
|
|
{
|
||
|
|
devShells.${system}.default = pkgs.mkShell {
|
||
|
|
buildInputs = [
|
||
|
|
pkgs.pnpm
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|