blob: 75bfce5404414145b387d8dd33580a61d5a2ab87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
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
];
shellHook = ''
# Use //:.gitmessage as the commit message template
${pkgs.git}/bin/git config --local commit.template ".gitmessage"
# Use a common, shared file as the default for running
# git-blame with the `--ignore-revs` flag
${pkgs.git}/bin/git config --local blame.ignoreRevsFile ".git-blame-ignore-revs"
'';
};
}
);
}
|