forked from ping-pub/explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
45 lines (41 loc) · 1.11 KB
/
flake.nix
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
{
description = "Build the Union ping-pub explorer";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs@{ self, nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
imports = [
./explorer.nix
];
perSystem = { config, self', inputs', system, pkgs, lib, ... }: {
_module.args = {
inherit nixpkgs;
pkgs = import nixpkgs {
inherit system;
};
};
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
tree
direnv
nodePackages_latest.yarn
nodePackages_latest.nodejs
];
};
};
};
nixConfig = {
extra-substituters = [
"https://union.cachix.org"
"https://cache.garnix.io"
];
extra-trusted-public-keys = [
"union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M="
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
];
accept-flake-config = true;
};
}