zen/flake.nix

32 lines
587 B
Nix
Raw Normal View History

2024-08-22 09:18:44 +07:00
{
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
};
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShell.${system} = pkgs.mkShell {
name = "zen-shell";
buildInputs = with pkgs; [
go
nodePackages_latest.nodejs
goose
air
upx
buf
buf-language-server
protoc-gen-go
protoc-gen-connect-go
protoc-gen-validate
air
gopls
];
};
};
}