2024-07-19 07:01:04 +03:00
|
|
|
{
|
|
|
|
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
|
|
|
|
];
|
2024-07-19 07:02:18 +03:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
# Use //:.gitmessage as the commit message template
|
|
|
|
${pkgs.git}/bin/git config --local commit.template ".gitmessage"
|
|
|
|
'';
|
2024-07-19 07:01:04 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|