coder/flake.nix

58 lines
1.3 KiB
Nix

{
description = "Development environments on your infrastructure";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
drpc.url = "github:storj/drpc/v0.0.32";
};
outputs = { self, nixpkgs, flake-utils, drpc }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
bash
bat
cairo
drpc.defaultPackage.${system}
exa
getopt
git
go-migrate
go_1_20
golangci-lint
gopls
gotestsum
jq
nfpm
nodePackages.typescript
nodePackages.typescript-language-server
nodejs
openssh
openssl
pango
pixman
postgresql
pkg-config
protoc-gen-go
ripgrep
shellcheck
shfmt
sqlc
terraform
typos
yarn
yq
zip
zstd
];
};
}
);
}