-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
53 lines (50 loc) · 1.3 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
46
47
48
49
50
51
52
53
{
description = "A NATS implementation of TVIX store";
nixConfig = {
extra-substituters = [
"https://cache.garnix.io"
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-root.url = "github:srid/flake-root";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
};
process-compose-flake.url = "github:Platonic-Systems/process-compose-flake";
depot = {
url = "git+https://cl.tvl.fyi/depot";
flake = false;
};
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
gomod2nix.url = "github:nix-community/gomod2nix";
};
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake
{
inherit inputs;
} {
imports = [
./nix
./nixos
];
systems = [
"x86_64-linux"
"aarch64-linux"
];
};
}