-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
105 lines (94 loc) · 2.82 KB
/
Copy pathflake.nix
File metadata and controls
105 lines (94 loc) · 2.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
description = "A Nix-flake-based Node.js 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";
};
pre-commit-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-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,
system,
...
}:
let
nodeVersion = builtins.head (builtins.split "\n" (builtins.readFile ./.node-version));
in
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
(_final: prev: rec {
# inherit (prev) nodejs;
nodejs = prev."nodejs_${toString nodeVersion}";
pnpm = prev.pnpm.override { inherit nodejs; };
yarn = prev.yarn.override { inherit nodejs; };
yarn-berry = prev.yarn-berry.override { inherit nodejs; };
})
];
};
# 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 = {
autocorrect.enable = true;
oxfmt.enable = true;
nixfmt.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;
# eslint.enable = true;
oxlint.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!"
'';
packages = with pkgs; [
nodejs
pnpm
yarn
# yarn-berry
];
};
};
};
}