-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
80 lines (71 loc) · 2.03 KB
/
Copy pathflake.nix
File metadata and controls
80 lines (71 loc) · 2.03 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
description = "A Nix-flake-based Shell development environment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-compat = {
url = "github:NixOS/flake-compat";
flake = false;
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.treefmt-nix.flakeModule
inputs.pre-commit-hooks.flakeModule
];
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
perSystem =
{
config,
pkgs,
...
}:
{
# https://flake.parts/options/treefmt-nix.html
# Example: https://github.com/nix-community/buildbot-nix/blob/main/nix/treefmt/flake-module.nix
treefmt = {
projectRootFile = "flake.nix";
settings.global.excludes = [ ];
programs = {
nixfmt.enable = true;
shellcheck.enable = true;
shfmt.enable = true;
just.enable = true;
};
};
# https://flake.parts/options/git-hooks-nix.html
# Example: https://github.com/cachix/git-hooks.nix/blob/master/template/flake.nix
pre-commit.settings.hooks = {
commitizen.enable = true;
eclint.enable = true;
treefmt.enable = true;
};
devShells.default = pkgs.mkShell {
inputsFrom = [
config.treefmt.build.devShell
config.pre-commit.devShell
];
shellHook = ''
echo 1>&2 "Welcome to the development shell!"
'';
};
};
};
}