git-bug/flake.nix

35 lines
653 B
Nix
Raw Normal View History

{
description = "workspace configuration for git-bug";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
flake-utils,
nixpkgs,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
packages = with pkgs; [
codespell
gh
git
go
golangci-lint
nixfmt-rfc-style
nodePackages.prettier
];
};
}
);
}