infra/jetstream/flake.nix

15 lines
265 B
Nix
Raw Normal View History

2024-11-27 04:00:54 +00:00
{
description = "jetstream";
outputs = { self, nixpkgs }: let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
devShells."x86_64-linux".default = pkgs.mkShell {
buildInputs = [
pkgs.go
pkgs.stdenv
];
};
};
}